mirror of https://github.com/encounter/SDL.git
Fixed detecting PS4 wired controller on Windows
This commit is contained in:
parent
80cfccbf8d
commit
7f17e0ab9e
|
@ -342,7 +342,7 @@ EnumJoysticksCallback(const DIDEVICEINSTANCE * pdidInstance, VOID * pContext)
|
||||||
JoyStick_DeviceData *pPrevJoystick = NULL;
|
JoyStick_DeviceData *pPrevJoystick = NULL;
|
||||||
const DWORD devtype = (pdidInstance->dwDevType & 0xFF);
|
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. */
|
return DIENUM_CONTINUE; /* Ignore touchpads, etc. */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue