|
@@ -2248,10 +2248,10 @@ bool Main::iteration() {
|
|
if (frame > 1000000) {
|
|
if (frame > 1000000) {
|
|
if (editor || project_manager) {
|
|
if (editor || project_manager) {
|
|
if (print_fps) {
|
|
if (print_fps) {
|
|
- print_line(vformat("Editor FPS: %d (%s mspf)", frames, rtos(1000.0 / frames).pad_decimals(1)));
|
|
|
|
|
|
+ print_line(vformat("Editor FPS: %d (%s mspf)", frames, rtos(1000.0 / frames).pad_decimals(2)));
|
|
}
|
|
}
|
|
} else if (GLOBAL_GET("debug/settings/stdout/print_fps") || print_fps) {
|
|
} else if (GLOBAL_GET("debug/settings/stdout/print_fps") || print_fps) {
|
|
- print_line(vformat("Project FPS: %d (%s mspf)", frames, rtos(1000.0 / frames).pad_decimals(1)));
|
|
|
|
|
|
+ print_line(vformat("Project FPS: %d (%s mspf)", frames, rtos(1000.0 / frames).pad_decimals(2)));
|
|
}
|
|
}
|
|
|
|
|
|
Engine::get_singleton()->_fps = frames;
|
|
Engine::get_singleton()->_fps = frames;
|