1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

usb_device: Updated control_transfer in order to prevent some games from being frozen

This commit is contained in:
brian218 2022-10-12 00:51:59 +08:00 committed by Megamouse
parent 13b3c78c7f
commit 44a1df4353

View File

@ -228,6 +228,7 @@ void usb_device_emulated::control_transfer(u8 bmRequestType, u8 bRequest, u16 wV
default: sys_usbd.fatal("Unhandled control transfer(0): 0x%x", bRequest); break;
}
break;
case 0x80: sys_usbd.todo("Unimplemented control transfer: 0x%x", bmRequestType); break;
default: sys_usbd.fatal("Unhandled control transfer: 0x%x", bmRequestType); break;
}
}