diff --git a/src/controllers/hid/hiddenylist.h b/src/controllers/hid/hiddenylist.h index 10c7f4eba30..af495ebe410 100644 --- a/src/controllers/hid/hiddenylist.h +++ b/src/controllers/hid/hiddenylist.h @@ -14,7 +14,9 @@ hid_denylist_t hid_denylisted[] = { {0x1157, 0x300, 0x0, 0x0, 0x3}, // EKS Otus mouse pad (linux) }; +// Apple has two two different vendor IDs which are used for different devices. constexpr unsigned short kAppleVendorId = 0x5ac; +constexpr unsigned short kAppleIncVendorId = 0x004c; constexpr unsigned short kGenericDesktopUsagePage = 0x01; diff --git a/src/controllers/hid/hidenumerator.cpp b/src/controllers/hid/hidenumerator.cpp index ec7aec6b758..57487e87f5d 100644 --- a/src/controllers/hid/hidenumerator.cpp +++ b/src/controllers/hid/hidenumerator.cpp @@ -23,7 +23,7 @@ bool recognizeDevice(const hid_device_info& device_info) { // these devices in future computers and none of these devices are DJ controllers, // so skip all Apple HID devices rather than maintaining a list of specific devices // to skip. - if (device_info.vendor_id == kAppleVendorId) { + if (device_info.vendor_id == kAppleVendorId || device_info.vendor_id == kAppleIncVendorId) { return false; }