Merge pull request #26830 from KidRigger/physics_fps_bug
Fixes physic_fps=0 bug that prevented quit.
This commit is contained in:
commit
03bd93e3b3
1 changed files with 3 additions and 1 deletions
|
@ -1882,7 +1882,9 @@ bool Main::iteration() {
|
||||||
|
|
||||||
uint64_t idle_begin = OS::get_singleton()->get_ticks_usec();
|
uint64_t idle_begin = OS::get_singleton()->get_ticks_usec();
|
||||||
|
|
||||||
OS::get_singleton()->get_main_loop()->idle(step * time_scale);
|
if (OS::get_singleton()->get_main_loop()->idle(step * time_scale)) {
|
||||||
|
exit = true;
|
||||||
|
}
|
||||||
message_queue->flush();
|
message_queue->flush();
|
||||||
|
|
||||||
VisualServer::get_singleton()->sync(); //sync if still drawing from previous frames.
|
VisualServer::get_singleton()->sync(); //sync if still drawing from previous frames.
|
||||||
|
|
Loading…
Reference in a new issue