1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-08 23:36:34 -05:00

Merge pull request #6697 from ameerj/fps-cap

config, nvflinger: Add FPS cap setting
This commit is contained in:
bunnei
2021-07-25 16:23:44 -07:00
committed by GitHub
8 changed files with 49 additions and 6 deletions

View File

@@ -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));
}