mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-20 22:05:06 +00:00
overlays: Limit vblank setting in the UI
- Use Qt GUI or config modification if you need crazy figures
This commit is contained in:
parent
a5cce58225
commit
d96f31eda4
1 changed files with 1 additions and 1 deletions
|
|
@ -181,7 +181,7 @@ namespace rsx
|
|||
add_signed_slider(&g_cfg.core.max_spurs_threads, localized_string_id::HOME_MENU_SETTINGS_ADVANCED_MAX_SPURS_THREADS, "", 1);
|
||||
|
||||
add_unsigned_slider(&g_cfg.video.driver_wakeup_delay, localized_string_id::HOME_MENU_SETTINGS_ADVANCED_DRIVER_WAKE_UP_DELAY, " µs", 20, {}, {}, g_cfg.video.driver_wakeup_delay.min, 800);
|
||||
add_signed_slider(&g_cfg.video.vblank_rate, localized_string_id::HOME_MENU_SETTINGS_ADVANCED_VBLANK_FREQUENCY, " Hz", 30);
|
||||
add_signed_slider(&g_cfg.video.vblank_rate, localized_string_id::HOME_MENU_SETTINGS_ADVANCED_VBLANK_FREQUENCY, " Hz", 30, {}, 30, 1200);
|
||||
add_checkbox(&g_cfg.video.vblank_ntsc, localized_string_id::HOME_MENU_SETTINGS_ADVANCED_VBLANK_NTSC);
|
||||
|
||||
apply_layout();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue