mirror of https://github.com/encounter/SDL.git
Don't use RAWINPUT joystick driver on Windows XP
Fixes https://github.com/libsdl-org/SDL/issues/6400
This commit is contained in:
parent
f4e3af15a1
commit
5025f24033
|
@ -855,6 +855,11 @@ RAWINPUT_JoystickInit(void)
|
||||||
|
|
||||||
SDL_assert(!SDL_RAWINPUT_inited);
|
SDL_assert(!SDL_RAWINPUT_inited);
|
||||||
|
|
||||||
|
if (!WIN_IsWindowsVistaOrGreater()) {
|
||||||
|
/* According to bug 6400, this doesn't work on Windows XP */
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (!SDL_GetHintBoolean(SDL_HINT_JOYSTICK_RAWINPUT, SDL_TRUE)) {
|
if (!SDL_GetHintBoolean(SDL_HINT_JOYSTICK_RAWINPUT, SDL_TRUE)) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue