Don't try to use this driver with the Xbox One S in Bluetooth mode on Linux
parent
9ca5373024
commit
a9ac9e3865
|
@ -133,6 +133,13 @@ typedef struct {
|
||||||
static SDL_bool
|
static SDL_bool
|
||||||
HIDAPI_DriverXboxOne_IsSupportedDevice(Uint16 vendor_id, Uint16 product_id, Uint16 version, int interface_number, const char *name)
|
HIDAPI_DriverXboxOne_IsSupportedDevice(Uint16 vendor_id, Uint16 product_id, Uint16 version, int interface_number, const char *name)
|
||||||
{
|
{
|
||||||
|
#ifdef __LINUX__
|
||||||
|
/* Check to see if it's the Xbox One S in Bluetooth mode */
|
||||||
|
if (vendor_id == 0x045e && product_id == 0x02fd) {
|
||||||
|
/* We can't do rumble on this device, hid_write() fails, so don't try to open it here */
|
||||||
|
return SDL_FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
return SDL_IsJoystickXboxOne(vendor_id, product_id);
|
return SDL_IsJoystickXboxOne(vendor_id, product_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue