Fix delay in rename_error windows save loop, should be 100msec, not 1sec
(cherry picked from commit caa887f317
)
This commit is contained in:
parent
fdbef334bb
commit
e867befd46
|
@ -141,7 +141,7 @@ void FileAccessWindows::close() {
|
|||
}
|
||||
if (rename_error) {
|
||||
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