From 46bd03c06d5c5d02f8edec3963df3a16c36f7bb3 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 20 Jul 2020 13:33:09 -0700 Subject: [PATCH] fs: correct retry loop again --- libraries/libstratosphere/source/fs/fs_content_storage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/libstratosphere/source/fs/fs_content_storage.cpp b/libraries/libstratosphere/source/fs/fs_content_storage.cpp index f04f35a7f..3a0a7a717 100644 --- a/libraries/libstratosphere/source/fs/fs_content_storage.cpp +++ b/libraries/libstratosphere/source/fs/fs_content_storage.cpp @@ -71,6 +71,7 @@ namespace ams::fs { R_CATCH(fs::ResultSystemPartitionNotReady) { if (i < MaxRetries - 1) { os::SleepThread(RetryInterval); + continue; } else { return fs::ResultSystemPartitionNotReady(); }