You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-22 15:06:45 +00:00
Do not fail on recursive iteration. Not ideal but should work for now and not crash. Fixes #25272
Eventually some sort of main even queue should be implemented to do this properly.
This commit is contained in:
@@ -1800,7 +1800,8 @@ static uint64_t idle_process_max = 0;
|
|||||||
|
|
||||||
bool Main::iteration() {
|
bool Main::iteration() {
|
||||||
|
|
||||||
ERR_FAIL_COND_V(iterating, false);
|
//for now do not error on this
|
||||||
|
//ERR_FAIL_COND_V(iterating, false);
|
||||||
|
|
||||||
iterating = true;
|
iterating = true;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user