diff options
author | bunnei <bunneidev@gmail.com> | 2021-07-25 16:23:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 16:23:44 -0700 |
commit | c09557acd8a1880b0f19cc13d5fde46186363c3d (patch) | |
tree | 2e1ddda5bd411f69d90c8efd214910aec3ec9b06 /src/yuzu/main.cpp | |
parent | 7e272d3cd81656b65b21f5a569fc9a2d76cac758 (diff) | |
parent | 2c6e274b3978ce4ee1af98e21f101e7037ec9d24 (diff) |
Merge pull request #6697 from ameerj/fps-cap
config, nvflinger: Add FPS cap setting
Diffstat (limited to 'src/yuzu/main.cpp')
-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 2f84ada73..3d747e8d9 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2919,7 +2919,7 @@ void GMainWindow::UpdateStatusBar() { } if (Settings::values.disable_fps_limit) { game_fps_label->setText( - tr("Game: %1 FPS (Limit off)").arg(results.average_game_fps, 0, 'f', 0)); + tr("Game: %1 FPS (Unlocked)").arg(results.average_game_fps, 0, 'f', 0)); } else { game_fps_label->setText(tr("Game: %1 FPS").arg(results.average_game_fps, 0, 'f', 0)); } |