From c5a243ba439ad8eb455f617322f723c17d83d13f Mon Sep 17 00:00:00 2001 From: RedPanda4552 Date: Tue, 2 Feb 2021 00:03:17 -0500 Subject: [PATCH] Prevent Vsync setting from being wiped on preset changes --- pcsx2/gui/AppConfig.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcsx2/gui/AppConfig.cpp b/pcsx2/gui/AppConfig.cpp index a743c9de9d..2e7e63feb9 100644 --- a/pcsx2/gui/AppConfig.cpp +++ b/pcsx2/gui/AppConfig.cpp @@ -1064,6 +1064,7 @@ bool AppConfig::IsOkApplyPreset(int n, bool ignoreMTVU) EmuOptions.EnablePatches = true; EmuOptions.GS = default_Pcsx2Config.GS; EmuOptions.GS.FrameLimitEnable = original_GS.FrameLimitEnable; //Frame limiter is not modified by presets + EmuOptions.GS.VsyncEnable = original_GS.VsyncEnable; EmuOptions.Cpu = default_Pcsx2Config.Cpu; EmuOptions.Gamefixes = default_Pcsx2Config.Gamefixes;