diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/citra_qt/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 138763080..955faf748 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -627,8 +627,8 @@ void GMainWindow::UpdateStatusBar() { | |||
| 627 | 627 | ||
| 628 | auto results = Core::System::GetInstance().GetAndResetPerfStats(); | 628 | auto results = Core::System::GetInstance().GetAndResetPerfStats(); |
| 629 | 629 | ||
| 630 | emu_speed_label->setText(tr("Speed: %1%").arg(results.emulation_speed * 100.0, 0, 'f', 2)); | 630 | emu_speed_label->setText(tr("Speed: %1%").arg(results.emulation_speed * 100.0, 0, 'f', 0)); |
| 631 | game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 1)); | 631 | game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 0)); |
| 632 | emu_frametime_label->setText(tr("Frame: %1 ms").arg(results.frametime * 1000.0, 0, 'f', 2)); | 632 | emu_frametime_label->setText(tr("Frame: %1 ms").arg(results.frametime * 1000.0, 0, 'f', 2)); |
| 633 | 633 | ||
| 634 | emu_speed_label->setVisible(true); | 634 | emu_speed_label->setVisible(true); |