mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
sys_usbd: Fix emulated devices not being created without a physical device
This commit is contained in:
parent
bef1a672ba
commit
07c5f1ce56
1 changed files with 1 additions and 1 deletions
|
@ -529,7 +529,7 @@ usb_handler_thread::usb_handler_thread()
|
|||
const int count = passthrough_usb_device_counts[entry];
|
||||
for (int i = count; i < entry.max_device_count(); i++)
|
||||
{
|
||||
sys_usbd.success("Emulating device: %s (%d)", std::basic_string(entry.device_name), i);
|
||||
sys_usbd.success("Emulating device: %s (%d)", std::basic_string(entry.device_name), i+1);
|
||||
auto usb_dev = entry.make_instance(i, get_new_location());
|
||||
connect_usb_device(usb_dev, true);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue