From 20d23479712cc4fc6f4186cb5133644370a17e85 Mon Sep 17 00:00:00 2001
From: gdkchan <gab.dark.100@gmail.com>
Date: Mon, 26 Apr 2021 18:56:14 -0300
Subject: [PATCH] Fix GetClockSnapshot not writing steady clock timepoint
 (#2249)

---
 Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs b/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs
index 653b9109eb..534af45766 100644
--- a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs
+++ b/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs
@@ -354,6 +354,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
             clockSnapshot.IsAutomaticCorrectionEnabled = _timeManager.StandardUserSystemClock.IsAutomaticCorrectionEnabled();
             clockSnapshot.UserContext                  = userContext;
             clockSnapshot.NetworkContext               = networkContext;
+            clockSnapshot.SteadyClockTimePoint         = currentTimePoint;
 
             ResultCode result = _timeManager.TimeZone.Manager.GetDeviceLocationName(out string deviceLocationName);