Skip to content

Commit

Permalink
Whoops, make the hint actually default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 13, 2020
1 parent 13a4caf commit 9ee0e88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/joystick/windows/SDL_windowsjoystick.c
Expand Up @@ -365,7 +365,7 @@ WINDOWS_JoystickInit(void)

WINDOWS_JoystickDetect();

s_bJoystickThread = SDL_GetHintBoolean(SDL_HINT_JOYSTICK_THREAD, SDL_TRUE);
s_bJoystickThread = SDL_GetHintBoolean(SDL_HINT_JOYSTICK_THREAD, SDL_FALSE);
if (s_bJoystickThread) {
if (SDL_StartJoystickThread() < 0) {
return -1;
Expand Down

0 comments on commit 9ee0e88

Please sign in to comment.