Disable the RAWINPUT joystick driver by default

It's only needed to support more than 4 Xbox controllers, and adds significant complexity to the joystick processing, and we regularly get bugs from people who aren't using an SDL window who need to turn on SDL_HINT_JOYSTICK_THREAD.
This commit is contained in:
Sam Lantinga
2022-10-17 07:39:52 -07:00
parent 5025f24033
commit 47ba997f06
3 changed files with 8 additions and 3 deletions

View File

@@ -860,7 +860,7 @@ RAWINPUT_JoystickInit(void)
return -1;
}
if (!SDL_GetHintBoolean(SDL_HINT_JOYSTICK_RAWINPUT, SDL_TRUE)) {
if (!SDL_GetHintBoolean(SDL_HINT_JOYSTICK_RAWINPUT, SDL_FALSE)) {
return -1;
}