浏览代码

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.

Juan Linietsky 6 年之前
父节点
当前提交
99d997e424
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      main/main.cpp

+ 2 - 1
main/main.cpp

@@ -1800,7 +1800,8 @@ static uint64_t idle_process_max = 0;
 
 bool Main::iteration() {
 
-	ERR_FAIL_COND_V(iterating, false);
+	//for now do not error on this
+	//ERR_FAIL_COND_V(iterating, false);
 
 	iterating = true;