From ad616a5cdd6af991afdb323ef536bed36f014ea1 Mon Sep 17 00:00:00 2001 From: Sanjay Govind Date: Fri, 24 Jan 2025 08:40:13 +1300 Subject: [PATCH] libusb: increase timer before processing hotplug event --- rpcs3/Emu/Cell/lv2/sys_usbd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_usbd.cpp b/rpcs3/Emu/Cell/lv2/sys_usbd.cpp index 26409e9c95..6c006e43c6 100644 --- a/rpcs3/Emu/Cell/lv2/sys_usbd.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_usbd.cpp @@ -1033,7 +1033,7 @@ void handle_hotplug_event(bool connected) { if (auto usbh = g_fxo->try_get>()) { - usbh->usb_hotplug_timeout = get_system_time() + (connected ? 500'000ull : 0); + usbh->usb_hotplug_timeout = get_system_time() + (connected ? 1'000'000ull : 0); } }