From bbed78149c7a176a3687dc081f6a34063a603f8e Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sat, 1 Dec 2018 19:07:25 -0800 Subject: [PATCH] fs.mitm: Hog less CPU time if SD card not inserted --- stratosphere/fs_mitm/source/fsmitm_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/fs_mitm/source/fsmitm_utils.cpp b/stratosphere/fs_mitm/source/fsmitm_utils.cpp index c1683eda9..2151e22ff 100644 --- a/stratosphere/fs_mitm/source/fsmitm_utils.cpp +++ b/stratosphere/fs_mitm/source/fsmitm_utils.cpp @@ -69,7 +69,7 @@ void Utils::InitializeSdThreadFunc(void *args) { /* Mount SD. */ while (R_FAILED(fsMountSdcard(&g_sd_filesystem))) { - svcSleepThread(1000ULL); + svcSleepThread(1000000ULL); } /* Back up CAL0, if it's not backed up already. */