Browse Source

Revert "Fixed detection of the Steam Virtual Gamepad on macOS"

This reverts commit 5fcd70578bdde3eaaa51aa4ab6c24ed08bd49db3.

Steam has been updated to send a version of 1 to avoid conflicts with controllers that report a version of 0.
Sam Lantinga 1 year ago
parent
commit
5f00147e61
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/joystick/hidapi/SDL_hidapi_xbox360.c

+ 1 - 2
src/joystick/hidapi/SDL_hidapi_xbox360.c

@@ -81,8 +81,7 @@ static SDL_bool HIDAPI_DriverXbox360_IsSupportedDevice(SDL_HIDAPI_Device *device
         return SDL_FALSE;
     }
 #if defined(__MACOS__) || defined(__WIN32__)
-    if (vendor_id == USB_VENDOR_MICROSOFT && product_id == 0x028e &&
-        (version == 0 || version == 1)) {
+    if (vendor_id == USB_VENDOR_MICROSOFT && product_id == 0x028e && version == 1) {
         /* This is the Steam Virtual Gamepad, which isn't supported by this driver */
         return SDL_FALSE;
     }