Fix delay in rename_error windows save loop, should be 100msec, not 1sec
This commit is contained in:
parent
2e474f42b8
commit
caa887f317
|
@ -162,7 +162,7 @@ void FileAccessWindows::close() {
|
||||||
}
|
}
|
||||||
if (rename_error) {
|
if (rename_error) {
|
||||||
attempts--;
|
attempts--;
|
||||||
OS::get_singleton()->delay_usec(1000000); //wait 100msec and try again
|
OS::get_singleton()->delay_usec(100000); // wait 100msec and try again
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue