diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-05-09 21:02:23 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 17:36:14 +0200 |
commit | 0e4c35c591bec72525b128336254feb76c4adc73 (patch) | |
tree | 6ed72191d9e66eabaa15719256cf7e1a740e7abd | |
parent | Clang Format. (diff) | |
download | yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar.gz yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar.bz2 yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar.lz yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar.xz yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar.zst yuzu-0e4c35c591bec72525b128336254feb76c4adc73.zip |
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 53790c89c..82625e67f 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2090,7 +2090,7 @@ void GMainWindow::UpdateStatusBar() { 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); + emu_speed_label->setVisible(!Settings::values.use_multi_core); game_fps_label->setVisible(true); emu_frametime_label->setVisible(true); } |