Skip to content

Commit

Permalink
hid: Add Razer Arctosa keyboard to hid enumeration blacklist.
Browse files Browse the repository at this point in the history
Hangs SDL, same as the Razer Lycosa.

Fixes Bugzilla #5101.
  • Loading branch information
icculus committed Apr 21, 2020
1 parent 09ca66b commit 3625b83
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/hidapi/windows/hid.c
Expand Up @@ -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 )
{
Expand Down

0 comments on commit 3625b83

Please sign in to comment.