From 931da5e1d27c14c9beb08d99641d68784d94c48e Mon Sep 17 00:00:00 2001 From: Vova Date: Sat, 15 Feb 2025 15:56:45 +1000 Subject: [PATCH] fix update --- .../Utilities/Configuration/ConfigurationState.Migration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/Utilities/Configuration/ConfigurationState.Migration.cs b/src/Ryujinx/Utilities/Configuration/ConfigurationState.Migration.cs index 20c81f8d8..66b2d0cf4 100644 --- a/src/Ryujinx/Utilities/Configuration/ConfigurationState.Migration.cs +++ b/src/Ryujinx/Utilities/Configuration/ConfigurationState.Migration.cs @@ -95,7 +95,7 @@ namespace Ryujinx.Ava.Utilities.Configuration System.Region.Value = cff.SystemRegion; System.TimeZone.Value = cff.SystemTimeZone; System.SystemTimeOffset.Value = shouldLoadFromFile ? cff.SystemTimeOffset : System.SystemTimeOffset.Value; // Get from global config only - System.MatchSystemTime.Value = shouldLoadFromFile ? cff.MatchSystemTime : System.SystemTimeOffset.Value; // Get from global config only + System.MatchSystemTime.Value = shouldLoadFromFile ? cff.MatchSystemTime : System.MatchSystemTime.Value; // Get from global config only System.EnableDockedMode.Value = cff.DockedMode; System.EnablePtc.Value = cff.EnablePtc; System.EnableLowPowerPtc.Value = cff.EnableLowPowerPtc;