Skip to content

Commit

Permalink
More FPS Options (#482)
Browse files Browse the repository at this point in the history
Added 40,45,50,55 fps option
  • Loading branch information
vrokolos authored Dec 2, 2024
1 parent cc081ed commit 61a08db
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/ui/settings/panes/basic.pane.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ static const int supported_resolutions_len = sizeof(supported_resolutions) / siz

static const pref_dropdown_int_entry_t supported_fps[] = {
{"30 FPS", 30},
{"40 FPS", 40},
{"45 FPS", 45},
{"50 FPS", 50},
{"55 FPS", 55},
{"60 FPS", 60, true},
{"90 FPS", 90},
{"120 FPS", 120},
Expand Down Expand Up @@ -254,4 +258,4 @@ static void pref_mark_restart_cb(lv_event_t *e) {
basic_pane_t *pane = (basic_pane_t *) lv_event_get_user_data(e);
settings_controller_t *parent = pane->parent;
parent->needs_restart |= strcasecmp(i18n_locale(), app_configuration->language) != 0;
}
}

0 comments on commit 61a08db

Please sign in to comment.