mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-07 11:58:12 +00: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:
@@ -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 )
|
||||
{
|
||||
|
Reference in New Issue
Block a user