From 1c473a47e55247dafe7971fa69f6b2d6155ac33b Mon Sep 17 00:00:00 2001 From: Zephilinox Date: Tue, 23 Jan 2018 23:40:24 +0000 Subject: [PATCH] Print FPS setting now only prints the game FPS --- main/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/main.cpp b/main/main.cpp index 4759e378e93..f6a83914476 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1775,7 +1775,7 @@ bool Main::iteration() { if (frame > 1000000) { - if (GLOBAL_DEF("debug/settings/stdout/print_fps", OS::get_singleton()->is_stdout_verbose())) { + if (GLOBAL_DEF("debug/settings/stdout/print_fps", OS::get_singleton()->is_stdout_verbose()) && !editor) { print_line("FPS: " + itos(frames)); };