You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-22 15:06:45 +00:00
Fixes physic_fps=0 bug.
Added a condition to check if the loop exited without iteration
being run by checking the return value from idle().
Fixes: #26321
(cherry picked from commit 3c27980a17)
This commit is contained in:
committed by
Rémi Verschelde
parent
9bd5501a22
commit
fdb94e3409
@@ -1876,7 +1876,9 @@ bool Main::iteration() {
|
||||
|
||||
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();
|
||||
|
||||
VisualServer::get_singleton()->sync(); //sync if still drawing from previous frames.
|
||||
|
||||
Reference in New Issue
Block a user