From 5ef8eb49be25f5b751fe6cb018c9dc62bdf615b0 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 29 Aug 2018 20:55:02 -0700 Subject: [PATCH] Don't show the Razer Raiju sound interface as a game controller --- src/joystick/hidapi/SDL_hidapi_ps4.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/joystick/hidapi/SDL_hidapi_ps4.c b/src/joystick/hidapi/SDL_hidapi_ps4.c index 6dcdb6481ddc7..ffef9683a1dee 100644 --- a/src/joystick/hidapi/SDL_hidapi_ps4.c +++ b/src/joystick/hidapi/SDL_hidapi_ps4.c @@ -216,9 +216,11 @@ static uint8_t GetPlaystationVolumeFromFloat(float fVolume) static SDL_bool HIDAPI_DriverPS4_IsSupportedDevice(Uint16 vendor_id, Uint16 product_id, Uint16 version, int interface_number, Uint16 usage_page, Uint16 usage) { - /* The Revolution Pro Controller exposes multiple interfaces on Windows */ + /* The Revolution Pro Controller and Razer Raiju expose multiple interfaces on Windows */ const Uint16 NACON_USB_VID = 0x146b; - if (vendor_id == NACON_USB_VID && usage_page != 0 && usage_page != 1) { + const Uint16 RAZER_USB_VID = 0x1532; + if ((vendor_id == NACON_USB_VID || vendor_id == RAZER_USB_VID) && + (usage_page != 0 && usage_page != 1)) { return SDL_FALSE; }