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
Sam Lantinga 2023-09-15 05:07:05 -07:00
parent 859dc14add
commit 9301f7ace2
1 changed files with 1 additions and 0 deletions

View File

@ -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 */