Revert "Disable the RAWINPUT joystick driver by default"

Disabling RAWINPUT on Windows 10 causes these issues:
* All Xbox controllers are named "XInput Controller".
* Trigger rumble no longer works.
* "XInput Controllers" are now also listed as separate haptic devices
This commit is contained in:
Sam Lantinga 2022-10-17 17:43:06 -07:00
parent 7e1088167a
commit 0bc852ce53
3 changed files with 3 additions and 8 deletions

View file

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