config, nvflinger: Add FPS cap setting

Allows finer tuning of the FPS limit.
This commit is contained in:
ameerj
2021-07-22 21:03:50 -04:00
parent db46f8a70c
commit 2c6e274b39
8 changed files with 49 additions and 6 deletions

View File

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