소스 검색

Don't use RAWINPUT joystick driver on Windows XP

Fixes https://github.com/libsdl-org/SDL/issues/6400
Sam Lantinga 2 년 전
부모
커밋
5025f24033
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/joystick/windows/SDL_rawinputjoystick.c

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

@@ -855,6 +855,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;
     }