hid: Add Razer Arctosa keyboard to hid enumeration blacklist. Hangs SDL, same as the Razer Lycosa. Fixes Bugzilla #5101.
diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c
index 2f66c50..d0aef74 100644
--- a/src/hidapi/windows/hid.c
+++ b/src/hidapi/windows/hid.c
@@ -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 )
{