From 67e425bcf810b7b76e7cbb712db1c3ae7ab10aeb Mon Sep 17 00:00:00 2001 From: Marcel Hild Date: Fri, 22 Mar 2024 16:35:56 +0100 Subject: [PATCH] Add support for MadCatz Saitek Side Panel Control Deck Signed-off-by: Marcel Hild --- src/joystick/hidapi/SDL_hidapijoystick.c | 4 ++++ src/joystick/usb_ids.h | 1 + 2 files changed, 5 insertions(+) diff --git a/src/joystick/hidapi/SDL_hidapijoystick.c b/src/joystick/hidapi/SDL_hidapijoystick.c index b04c6ca3b7..cb1f108157 100644 --- a/src/joystick/hidapi/SDL_hidapijoystick.c +++ b/src/joystick/hidapi/SDL_hidapijoystick.c @@ -164,6 +164,10 @@ SDL_bool HIDAPI_SupportsPlaystationDetection(Uint16 vendor, Uint16 product) } return SDL_TRUE; case USB_VENDOR_MADCATZ: + if (product == USB_PRODUCT_MADCATZ_SAITEK_SIDE_PANEL_CONTROL_DECK) { + /* This is not a Playstation compatible device */ + return SDL_FALSE; + } return SDL_TRUE; case USB_VENDOR_MAYFLASH: return SDL_TRUE; diff --git a/src/joystick/usb_ids.h b/src/joystick/usb_ids.h index 3195269881..e673bb8af6 100644 --- a/src/joystick/usb_ids.h +++ b/src/joystick/usb_ids.h @@ -74,6 +74,7 @@ #define USB_PRODUCT_HORI_FIGHTING_STICK_ALPHA_PS5 0x0184 #define USB_PRODUCT_LOGITECH_F310 0xc216 #define USB_PRODUCT_LOGITECH_CHILLSTREAM 0xcad1 +#define USB_PRODUCT_MADCATZ_SAITEK_SIDE_PANEL_CONTROL_DECK 0x2218 #define USB_PRODUCT_NACON_REVOLUTION_5_PRO_PS4_WIRELESS 0x0d16 #define USB_PRODUCT_NACON_REVOLUTION_5_PRO_PS4_WIRED 0x0d17 #define USB_PRODUCT_NACON_REVOLUTION_5_PRO_PS5_WIRELESS 0x0d18