From 7d2236db2f9ac43da0c164ff33c2c377cec9de2b Mon Sep 17 00:00:00 2001 From: ANR2ME Date: Mon, 31 Aug 2020 11:00:04 +0700 Subject: [PATCH] Increasing the shutdown delay so that there will be at least one "4=sceUtilityNetconfGetStatus()" after "0=sceUtilityNetconfShutdownStart()" instead of directly to "0=sceUtilityNetconfGetStatus()" (just like what happen when using utility.prx file with KHBBS on JPCSP) --- Core/Dialog/PSPNetconfDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Dialog/PSPNetconfDialog.cpp b/Core/Dialog/PSPNetconfDialog.cpp index a218382d6838..93571ce2ff58 100644 --- a/Core/Dialog/PSPNetconfDialog.cpp +++ b/Core/Dialog/PSPNetconfDialog.cpp @@ -45,7 +45,7 @@ static const float FONT_SCALE = 0.65f; // Needs testing. const static int NET_INIT_DELAY_US = 300000; -const static int NET_SHUTDOWN_DELAY_US = 26000; +const static int NET_SHUTDOWN_DELAY_US = 260000; const static int NET_RUNNING_DELAY_US = 1000000; // KHBBS is showing adhoc dialog for about 3-4 seconds, but feels too long, so we're faking it to 1 sec instead to let players read the text const static int NET_CONNECT_TIMEOUT = 5000000;