diff --git a/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs b/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs index 5d33aace9..f6c4e6496 100644 --- a/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs @@ -63,6 +63,7 @@ namespace Ryujinx.Ava.UI.ViewModels private int _multiplayerModeIndex; private string _ldnPassphrase; private string _LdnServer; + private bool _matchSystemTime; public int ResolutionScale { @@ -333,7 +334,16 @@ namespace Ryujinx.Ava.UI.ViewModels //private DateTimeOffset _currentDate; //private TimeSpan _currentTime; - public bool MatchSystemTime { get; set; } + public bool MatchSystemTime + { + get => _matchSystemTime; + set + { + _matchSystemTime = value; + + OnPropertyChanged(); + } + } public DateTimeOffset CurrentDate { get; set; }