From b3c2fdd8e31fc209781ae0940d00d64795b1379d Mon Sep 17 00:00:00 2001 From: Thog Date: Sun, 14 Jul 2019 21:50:46 +0200 Subject: [PATCH] Address gdk's comments --- Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs b/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs index 718d5be715..1e527c002e 100644 --- a/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs +++ b/Ryujinx.HLE/HOS/Services/Time/Clock/ClockTypes.cs @@ -1,11 +1,10 @@ using Ryujinx.HLE.Utilities; -using System; using System.Runtime.InteropServices; namespace Ryujinx.HLE.HOS.Services.Time.Clock { [StructLayout(LayoutKind.Sequential)] - public struct TimeSpanType + struct TimeSpanType { public ulong NanoSeconds; @@ -26,14 +25,14 @@ namespace Ryujinx.HLE.HOS.Services.Time.Clock } [StructLayout(LayoutKind.Sequential)] - public struct SteadyClockTimePoint + struct SteadyClockTimePoint { public ulong TimePoint; public UInt128 ClockSourceId; } [StructLayout(LayoutKind.Sequential)] - public struct SystemClockContext + struct SystemClockContext { public ulong Offset; public SteadyClockTimePoint SteadyTimePoint;