Skip to content

Commit

Permalink
Don't show the Razer Raiju sound interface as a game controller
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 30, 2018
1 parent 90a5607 commit 5ef8eb4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/joystick/hidapi/SDL_hidapi_ps4.c
Expand Up @@ -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;
}

Expand Down

0 comments on commit 5ef8eb4

Please sign in to comment.