Cleanup and proper deinitialisation
This commit is contained in:
parent
e874b75357
commit
659f89ea85
2 changed files with 9 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
#include "../Controller.h"
|
#include "../Controller.h"
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define GLFW_INCLUDE_NONE
|
#define GLFW_INCLUDE_NONE
|
||||||
|
@ -58,7 +59,12 @@ static void JoystickCallback(int joystick_id, int event)
|
||||||
|
|
||||||
void ControllerBackend_Deinit(void)
|
void ControllerBackend_Deinit(void)
|
||||||
{
|
{
|
||||||
|
glfwSetJoystickCallback(NULL);
|
||||||
|
|
||||||
|
joystick_connected = FALSE;
|
||||||
|
connected_joystick_id = 0;
|
||||||
|
joystick_neutral_x = 0;
|
||||||
|
joystick_neutral_y = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL ControllerBackend_Init(void)
|
BOOL ControllerBackend_Init(void)
|
||||||
|
@ -92,6 +98,7 @@ BOOL ControllerBackend_GetJoystickStatus(JOYSTICK_STATUS *status)
|
||||||
int total_buttons;
|
int total_buttons;
|
||||||
const unsigned char *buttons = glfwGetJoystickButtons(connected_joystick_id, &total_buttons);
|
const unsigned char *buttons = glfwGetJoystickButtons(connected_joystick_id, &total_buttons);
|
||||||
|
|
||||||
|
// The original `Input.cpp` assumed there were 32 buttons (because of DirectInput's `DIJOYSTATE` struct)
|
||||||
if (total_buttons > 32)
|
if (total_buttons > 32)
|
||||||
total_buttons = 32;
|
total_buttons = 32;
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ BOOL ControllerBackend_GetJoystickStatus(JOYSTICK_STATUS *status)
|
||||||
if (joystick == NULL)
|
if (joystick == NULL)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
// The original Input.cpp assumed there were 32 buttons (because of DirectInput's 'DIJOYSTATE' struct)
|
// The original `Input.cpp` assumed there were 32 buttons (because of DirectInput's `DIJOYSTATE` struct)
|
||||||
int numButtons = SDL_JoystickNumButtons(joystick);
|
int numButtons = SDL_JoystickNumButtons(joystick);
|
||||||
if (numButtons > 32)
|
if (numButtons > 32)
|
||||||
numButtons = 32;
|
numButtons = 32;
|
||||||
|
|
Loading…
Add table
Reference in a new issue