fs: correct retry loop again

This commit is contained in:
Michael Scire 2020-07-20 13:33:09 -07:00
parent a8cc9c6d6f
commit d58aaede93

View File

@ -71,6 +71,7 @@ namespace ams::fs {
R_CATCH(fs::ResultSystemPartitionNotReady) {
if (i < MaxRetries - 1) {
os::SleepThread(RetryInterval);
continue;
} else {
return fs::ResultSystemPartitionNotReady();
}