mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Better warning for windows.
This commit is contained in:
parent
c1b8aa75f2
commit
90ce6ad371
1 changed files with 6 additions and 0 deletions
|
@ -514,6 +514,12 @@ libusb_device_handle * CWII_IPC_HLE_Device_hid::GetDeviceByDevNum(u32 devNum)
|
|||
);
|
||||
}
|
||||
}
|
||||
#ifdef _WIN32
|
||||
else if (ret == LIBUSB_ERROR_NOT_SUPPORTED)
|
||||
{
|
||||
WARN_LOG(WII_IPC_HID, "Please install the libusb drivers for the device %04X:%04X", ret, desc.idVendor, desc.idProduct);
|
||||
}
|
||||
#endif
|
||||
else
|
||||
{
|
||||
ERROR_LOG(WII_IPC_HID, "libusb_open failed to open device with error = %d", ret);
|
||||
|
|
Loading…
Add table
Reference in a new issue