diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:03:50 -0400 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 22:04:36 -0400 |
commit | 2c6e274b3978ce4ee1af98e21f101e7037ec9d24 (patch) | |
tree | 3342199a569d656ed23b0d2407c01f939066aaed /src/yuzu/main.cpp | |
parent | db46f8a70c853ccab3318abed1416231a3c426db (diff) |
config, nvflinger: Add FPS cap setting
Allows finer tuning of the FPS limit.
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 03a909d17d..ce74155927 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2921,7 +2921,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)); } |