From fa473da62a9d6834e276ae6018e93aa901935163 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Tue, 11 Feb 2014 21:45:08 +0100 Subject: [PATCH] Reduce savedata init delay to 200ms --- Core/Dialog/PSPSaveDialog.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Core/Dialog/PSPSaveDialog.cpp b/Core/Dialog/PSPSaveDialog.cpp index 9c722f70e2..4955804cf3 100755 --- a/Core/Dialog/PSPSaveDialog.cpp +++ b/Core/Dialog/PSPSaveDialog.cpp @@ -30,8 +30,9 @@ const static float FONT_SCALE = 0.55f; -// These are rough, it seems to take at least 500ms or so to init, and shutdown depends on threads. -const static int SAVEDATA_INIT_DELAY_US = 500000; +// These are rough, it seems to take at least 100ms or so to init, and shutdown depends on threads. +// Some games seem to required slightly longer delays to work, so we try 200ms as a compromise. +const static int SAVEDATA_INIT_DELAY_US = 200000; const static int SAVEDATA_SHUTDOWN_DELAY_US = 2000;