mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-03-23 21:55:12 +00:00
Fixed slow enumeration when Apple Cinema HD display 30" is plugged in
This commit is contained in:
parent
133b475586
commit
19c3484469
|
@ -325,6 +325,12 @@ int hid_blacklist(unsigned short vendor_id, unsigned short product_id)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Apple Cinema HD display 30" - takes a long time to return the product string
|
||||||
|
if ( vendor_id == 0x05AC && product_id == 0x9220 )
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue