Commit MetaInfo

Revision77d56667ebe02570c6aad1b2a61ce4fc2d1db9cf (tree)
Time2020-03-14 11:19:29
AuthorSam Lantinga <slouken@libs...>
CommiterSam Lantinga

Log Message

Fixed slow enumeration when Apple Cinema HD display 30" is plugged in

Change Summary

Incremental Difference

diff -r 1daea6276f1b -r 77d56667ebe0 src/hidapi/windows/hid.c
--- a/src/hidapi/windows/hid.c Wed Mar 11 14:17:19 2020 -0400
+++ b/src/hidapi/windows/hid.c Fri Mar 13 19:19:29 2020 -0700
@@ -325,6 +325,12 @@
325325 return 1;
326326 }
327327
328+ // Apple Cinema HD display 30" - takes a long time to return the product string
329+ if ( vendor_id == 0x05AC && product_id == 0x9220 )
330+ {
331+ return 1;
332+ }
333+
328334 return 0;
329335 }
330336
Show on old repository browser