From 5886d903086c2284c6db7f27fac2cebf1b1ae55d Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 11 Jul 2025 11:55:20 -0700 Subject: [PATCH] Fixed long delay when enumerating the Razer Huntsman keyboard Fixes https://github.com/libsdl-org/SDL/issues/13236 (cherry picked from commit f199aafaeb79cbe084496269632537318d2e044e) --- src/hidapi/windows/hid.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c index 3376ba96e5..87aa639e24 100644 --- a/src/hidapi/windows/hid.c +++ b/src/hidapi/windows/hid.c @@ -949,6 +949,7 @@ static int hid_blacklist(unsigned short vendor_id, unsigned short product_id) { 0x0D8C, 0x0014 }, /* Sharkoon Skiller SGH2 headset - causes deadlock asking for device details */ { 0x1532, 0x0109 }, /* Razer Lycosa Gaming keyboard - causes deadlock asking for device details */ { 0x1532, 0x010B }, /* Razer Arctosa Gaming keyboard - causes deadlock asking for device details */ + { 0x1532, 0x0227 }, /* Razer Huntsman Gaming keyboard - long delay asking for device details */ { 0x1B1C, 0x1B3D }, /* Corsair Gaming keyboard - causes deadlock asking for device details */ { 0x1CCF, 0x0000 } /* All Konami Amusement Devices - causes deadlock asking for device details */ };