Skip to content

Commit

Permalink
Show VID/PID values for unsupported devices. (libretro#5825)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddenasbestos authored and bparker06 committed Nov 29, 2017
1 parent 5f09567 commit 05578f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion input/drivers_hid/libusb_hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ static int add_adapter(void *data, struct libusb_device *dev)

if (!pad_connection_has_interface(hid->slots, adapter->slot))
{
RARCH_ERR(" Interface not found (%s).\n", adapter->name);
RARCH_ERR("Interface not found (%s) (VID/PID: %04x:%04x).\n",
adapter->name, desc.idVendor, desc.idProduct);
goto error;
}

Expand Down

0 comments on commit 05578f0

Please sign in to comment.