mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-23 04:41:12 +00:00
fs: correct retry loop again
This commit is contained in:
parent
9482fafabd
commit
46bd03c06d
1 changed files with 1 additions and 0 deletions
|
@ -71,6 +71,7 @@ namespace ams::fs {
|
||||||
R_CATCH(fs::ResultSystemPartitionNotReady) {
|
R_CATCH(fs::ResultSystemPartitionNotReady) {
|
||||||
if (i < MaxRetries - 1) {
|
if (i < MaxRetries - 1) {
|
||||||
os::SleepThread(RetryInterval);
|
os::SleepThread(RetryInterval);
|
||||||
|
continue;
|
||||||
} else {
|
} else {
|
||||||
return fs::ResultSystemPartitionNotReady();
|
return fs::ResultSystemPartitionNotReady();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue