From bf618dc0b366eafa73e62f26b64f8b339520a210 Mon Sep 17 00:00:00 2001 From: KeatonTheBot Date: Sun, 27 Apr 2025 19:38:22 -0500 Subject: [PATCH] Revert "Custom refresh rate default value changed from 200% to 100%" This reverts commit c48866c9ec551a245ed619a8dfd2d73681bc23cc. --- 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 371da65ab..b04ce6d72 100644 --- a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs +++ b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs @@ -877,7 +877,7 @@ namespace Ryujinx.UI.Common.Configuration EnableHardwareAcceleration.Value = true; HideCursor.Value = HideCursorMode.OnIdle; Graphics.VSyncMode.Value = VSyncMode.Switch; - Graphics.CustomVSyncInterval.Value = 60; + Graphics.CustomVSyncInterval.Value = 120; Graphics.EnableCustomVSyncInterval.Value = false; Graphics.EnableShaderCache.Value = true; Graphics.EnableTextureRecompression.Value = false; @@ -1616,7 +1616,7 @@ namespace Ryujinx.UI.Common.Configuration CustomVSyncIntervalDecrement = Key.Unbound, }; - configurationFileFormat.CustomVSyncInterval = 60; + configurationFileFormat.CustomVSyncInterval = 120; configurationFileUpdated = true; }