Commit caa887f3 by Robin Hübner

Fix delay in rename_error windows save loop, should be 100msec, not 1sec

parent 2e474f42
......@@ -162,7 +162,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
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment