diff options
| author | 2020-05-09 15:02:23 -0400 | |
|---|---|---|
| committer | 2020-06-27 11:36:14 -0400 | |
| commit | 0e4c35c591bec72525b128336254feb76c4adc73 (patch) | |
| tree | 6ed72191d9e66eabaa15719256cf7e1a740e7abd /src | |
| parent | Clang Format. (diff) | |
| download | yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar.gz yuzu-0e4c35c591bec72525b128336254feb76c4adc73.tar.xz yuzu-0e4c35c591bec72525b128336254feb76c4adc73.zip | |
YuzuQT: Hide Speed UI on Multicore.
Diffstat (limited to 'src')
| -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() { | |||
| 2090 | game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 0)); | 2090 | game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 0)); |
| 2091 | emu_frametime_label->setText(tr("Frame: %1 ms").arg(results.frametime * 1000.0, 0, 'f', 2)); | 2091 | emu_frametime_label->setText(tr("Frame: %1 ms").arg(results.frametime * 1000.0, 0, 'f', 2)); |
| 2092 | 2092 | ||
| 2093 | emu_speed_label->setVisible(true); | 2093 | emu_speed_label->setVisible(!Settings::values.use_multi_core); |
| 2094 | game_fps_label->setVisible(true); | 2094 | game_fps_label->setVisible(true); |
| 2095 | emu_frametime_label->setVisible(true); | 2095 | emu_frametime_label->setVisible(true); |
| 2096 | } | 2096 | } |