hidapi/libusb: only enumerate each interface once
If a device has multiple altsettings, like an Xbox Series X controller, make sure we only enumerate each interface once, not once for each altsetting.main
parent
859dc14add
commit
9301f7ace2
|
@ -1023,6 +1023,7 @@ struct hid_device_info HID_API_EXPORT *hid_enumerate(unsigned short vendor_id,
|
||||||
libusb_close(handle);
|
libusb_close(handle);
|
||||||
handle = NULL;
|
handle = NULL;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
} /* altsettings */
|
} /* altsettings */
|
||||||
} /* interfaces */
|
} /* interfaces */
|
||||||
|
|
Loading…
Reference in New Issue