Print FPS setting now only prints the game FPS
This commit is contained in:
parent
59e83af201
commit
1c473a47e5
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue