From e2e83fc5dbc5cc1d86df5b510b646683cfb07914 Mon Sep 17 00:00:00 2001 From: Thog Date: Mon, 15 Jul 2019 19:26:14 +0200 Subject: [PATCH] Fix one missing nit and improve one comment --- Ryujinx.HLE/HOS/Services/Bpc/IRtcManager.cs | 2 +- Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Bpc/IRtcManager.cs b/Ryujinx.HLE/HOS/Services/Bpc/IRtcManager.cs index b2a0abe702..5ff9410a26 100644 --- a/Ryujinx.HLE/HOS/Services/Bpc/IRtcManager.cs +++ b/Ryujinx.HLE/HOS/Services/Bpc/IRtcManager.cs @@ -23,7 +23,7 @@ namespace Ryujinx.HLE.HOS.Services.Bpc public static ResultCode GetExternalRtcValue(out ulong rtcValue) { - // TODO: emulate MAX77620/MAX77812 + // TODO: emulate MAX77620/MAX77812 RTC DateTime unixEpoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); rtcValue = (ulong)(DateTime.Now.ToUniversalTime() - unixEpoch).TotalSeconds; diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs b/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs index 3354cce5a9..860f5ad2bb 100644 --- a/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs +++ b/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs @@ -28,7 +28,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.Clock [StructLayout(LayoutKind.Sequential)] struct SteadyClockTimePoint { - public long TimePoint; + public long TimePoint; public UInt128 ClockSourceId; public ResultCode GetSpanBetween(SteadyClockTimePoint other, out long outSpan)