From 99d997e424ad1d2f96044d4903caf8dd7347fbf5 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Thu, 24 Jan 2019 12:42:05 -0300 Subject: [PATCH] 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. --- main/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/main.cpp b/main/main.cpp index b94130002d4..211c3b69daa 100644 --- a/main/main.cpp +++ b/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;