Address gdk's comments

This commit is contained in:
Thog 2019-07-14 21:50:46 +02:00
commit b3c2fdd8e3
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6

View file

@ -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;