Просмотр исходного кода

Fix format error in performance statistics

Formatting
H27CK 6 лет назад
Родитель
Сommit
a26a725515
1 измененных файлов с 4 добавлено и 3 удалено
  1. 4 3
      src/yuzu_cmd/emu_window/emu_window_sdl2.cpp

+ 4 - 3
src/yuzu_cmd/emu_window/emu_window_sdl2.cpp

@@ -181,9 +181,10 @@ void EmuWindow_SDL2::PollEvents() {
     const u32 current_time = SDL_GetTicks();
     const u32 current_time = SDL_GetTicks();
     if (current_time > last_time + 2000) {
     if (current_time > last_time + 2000) {
         const auto results = Core::System::GetInstance().GetAndResetPerfStats();
         const auto results = Core::System::GetInstance().GetAndResetPerfStats();
-        const auto title = fmt::format(
-            "yuzu {} | {}-{} | FPS: {:.0f} ({:.0%})", Common::g_build_fullname,
-            Common::g_scm_branch, Common::g_scm_desc, results.game_fps, results.emulation_speed);
+        const auto title =
+            fmt::format("yuzu {} | {}-{} | FPS: {:.0f} ({:.0f}%)", Common::g_build_fullname,
+                        Common::g_scm_branch, Common::g_scm_desc, results.game_fps,
+                        results.emulation_speed * 100.0);
         SDL_SetWindowTitle(render_window, title.c_str());
         SDL_SetWindowTitle(render_window, title.c_str());
         last_time = current_time;
         last_time = current_time;
     }
     }