From 3625b83c63965fc80358327eb7c2bc6bd8be2dd9 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 21 Apr 2020 01:32:48 -0400 Subject: [PATCH] hid: Add Razer Arctosa keyboard to hid enumeration blacklist. Hangs SDL, same as the Razer Lycosa. Fixes Bugzilla #5101. --- src/hidapi/windows/hid.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c index 2f66c503c..d0aef7425 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 ) {