FullscreenUI: Move sync to host refresh to display settings

This commit is contained in:
Connor McLaughlin 2021-07-02 20:07:32 +10:00
parent 62d7608ef2
commit 4f96eb80a6
1 changed files with 5 additions and 6 deletions

View File

@ -1649,12 +1649,6 @@ void DrawSettingsWindow()
#undef MAKE_EMULATION_SPEED
settings_changed |= ToggleButton("Sync To Host Refresh Rate",
"Adjusts the emulation speed so the console's refresh rate matches the host "
"when VSync and Audio Resampling are enabled.",
&s_settings_copy.sync_to_host_refresh_rate,
s_settings_copy.video_sync_enabled && s_settings_copy.audio_resampling);
MenuHeading("Runahead/Rewind");
settings_changed |=
@ -2142,6 +2136,11 @@ void DrawSettingsWindow()
"Synchronizes presentation of the console's frames to the host. Enable for smoother animations.",
&s_settings_copy.video_sync_enabled);
settings_changed |= ToggleButton("Sync To Host Refresh Rate",
"Adjusts the emulation speed so the console's refresh rate matches the host "
"when VSync and Audio Resampling are enabled.",
&s_settings_copy.sync_to_host_refresh_rate, s_settings_copy.audio_resampling);
settings_changed |= ToggleButton("Optimal Frame Pacing",
"Ensures every frame generated is displayed for optimal pacing. Disable if "
"you are having speed or sound issues.",