From 8d79fea9694dad7433cb67a5079ae84e254e6848 Mon Sep 17 00:00:00 2001 From: Timo Schwarzer Date: Thu, 3 Jan 2019 18:22:42 +0100 Subject: [PATCH] Don't apply target_fps in editor --- main/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/main.cpp b/main/main.cpp index dcac2ff170..e0f9cfb9d9 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1932,7 +1932,7 @@ bool Main::iteration() { } int target_fps = Engine::get_singleton()->get_target_fps(); - if (target_fps > 0) { + if (target_fps > 0 && !Engine::get_singleton()->is_editor_hint()) { uint64_t time_step = 1000000L / target_fps; target_ticks += time_step; uint64_t current_ticks = OS::get_singleton()->get_ticks_usec();