mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-01-26 12:59:18 +01:00
hid: Add Razer Arctosa keyboard to hid enumeration blacklist.
Hangs SDL, same as the Razer Lycosa. Fixes Bugzilla #5101.
This commit is contained in:
parent
09ca66bf66
commit
3625b83c63
@ -326,6 +326,12 @@ int hid_blacklist(unsigned short vendor_id, unsigned short product_id)
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Razer Arctosa Gaming keyboard - Causes deadlock when asking for device details
|
||||
if ( vendor_id == 0x1532 && product_id == 0x010B )
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
// SPEEDLINK COMPETITION PRO - turns into an Android controller when enumerated
|
||||
if ( vendor_id == 0x0738 && product_id == 0x2217 )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user