Browse Source

Fixed detecting PS4 wired controller on Windows

Sam Lantinga 10 years ago
parent
commit
7f17e0ab9e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/joystick/windows/SDL_dinputjoystick.c

+ 1 - 1
src/joystick/windows/SDL_dinputjoystick.c

@@ -342,7 +342,7 @@ EnumJoysticksCallback(const DIDEVICEINSTANCE * pdidInstance, VOID * pContext)
     JoyStick_DeviceData *pPrevJoystick = NULL;
     const DWORD devtype = (pdidInstance->dwDevType & 0xFF);
 
-    if ((devtype != DI8DEVTYPE_JOYSTICK) && (devtype != DI8DEVTYPE_GAMEPAD)) {
+    if ((devtype != DI8DEVTYPE_JOYSTICK) && (devtype != DI8DEVTYPE_GAMEPAD) && (devtype != DI8DEVTYPE_1STPERSON)) {
         return DIENUM_CONTINUE;  /* Ignore touchpads, etc. */
     }