summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-20 03:56:26 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-27 02:22:03 +0100
commit008c709dbf66e748c8b7227ba34187939535e479 (patch)
tree71a4f61018268849b3d6d0b8067ddb7bf53a21e3
parentRemove built-in (non-Microprofile) profiler (diff)
downloadyuzu-008c709dbf66e748c8b7227ba34187939535e479.tar
yuzu-008c709dbf66e748c8b7227ba34187939535e479.tar.gz
yuzu-008c709dbf66e748c8b7227ba34187939535e479.tar.bz2
yuzu-008c709dbf66e748c8b7227ba34187939535e479.tar.lz
yuzu-008c709dbf66e748c8b7227ba34187939535e479.tar.xz
yuzu-008c709dbf66e748c8b7227ba34187939535e479.tar.zst
yuzu-008c709dbf66e748c8b7227ba34187939535e479.zip
-rw-r--r--src/citra_qt/main.cpp4
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() {
auto results = Core::System::GetInstance().GetAndResetPerfStats();
- emu_speed_label->setText(tr("Speed: %1%").arg(results.emulation_speed * 100.0, 0, 'f', 2));
- game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 1));
+ emu_speed_label->setText(tr("Speed: %1%").arg(results.emulation_speed * 100.0, 0, 'f', 0));
+ game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 0));
emu_frametime_label->setText(tr("Frame: %1 ms").arg(results.frametime * 1000.0, 0, 'f', 2));
emu_speed_label->setVisible(true);