diff --git a/Directory.Packages.props b/Directory.Packages.props
index 7054dcd7d..ab3bc39b8 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -42,7 +42,7 @@
-
+
diff --git a/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs b/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs
index 39df76aa4..03e3d44e9 100644
--- a/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs
+++ b/src/Ryujinx/UI/ViewModels/SettingsViewModel.cs
@@ -466,11 +466,10 @@ namespace Ryujinx.Ava.UI.ViewModels
public void MatchSystemTime()
{
- var dto = DateTimeOffset.Now;
-
- CurrentDate = new DateTimeOffset(dto.Year, dto.Month, dto.Day, 0, 0, 0, dto.Offset);
+ (DateTimeOffset dto, TimeSpan timeOfDay) = DateTimeOffset.Now.Extract();
- CurrentTime = dto.TimeOfDay;
+ CurrentDate = dto;
+ CurrentTime = timeOfDay;
OnPropertyChanged(nameof(CurrentDate));
OnPropertyChanged(nameof(CurrentTime));