From c48866c9ec551a245ed619a8dfd2d73681bc23cc Mon Sep 17 00:00:00 2001 From: KeatonTheBot Date: Sun, 12 Jan 2025 01:34:31 -0600 Subject: [PATCH] Custom refresh rate default value changed from 200% to 100% --- src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs index a08afe572..fa271a791 100644 --- a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs +++ b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs @@ -871,7 +871,7 @@ namespace Ryujinx.UI.Common.Configuration EnableHardwareAcceleration.Value = true; HideCursor.Value = HideCursorMode.OnIdle; Graphics.VSyncMode.Value = VSyncMode.Switch; - Graphics.CustomVSyncInterval.Value = 120; + Graphics.CustomVSyncInterval.Value = 60; Graphics.EnableCustomVSyncInterval.Value = false; Graphics.EnableShaderCache.Value = true; Graphics.EnableTextureRecompression.Value = false; @@ -1608,7 +1608,7 @@ namespace Ryujinx.UI.Common.Configuration CustomVSyncIntervalDecrement = Key.Unbound, }; - configurationFileFormat.CustomVSyncInterval = 120; + configurationFileFormat.CustomVSyncInterval = 60; configurationFileUpdated = true; }