Browse Source

Don't use RAWINPUT joystick driver on Windows XP

Fixes https://github.com/libsdl-org/SDL/issues/6400
(cherry-picked from commit 5025f2403393d70ee54d83cc583287b4c4f74e84)
Sam Lantinga 2 years ago
parent
commit
08f83f953c
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/joystick/windows/SDL_rawinputjoystick.c

+ 5 - 0
src/joystick/windows/SDL_rawinputjoystick.c

@@ -874,6 +874,11 @@ RAWINPUT_JoystickInit(void)
 
     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)) {
         return -1;
     }