aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs
index 18da4ed3..2d12a2a0 100644
--- a/src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs
@@ -7,14 +7,14 @@ namespace Ryujinx.HLE.HOS.Services.Time.Clock
abstract class SteadyClockCore
{
private UInt128 _clockSourceId;
- private bool _isRtcResetDetected;
- private bool _isInitialized;
+ private bool _isRtcResetDetected;
+ private bool _isInitialized;
public SteadyClockCore()
{
- _clockSourceId = UInt128Utils.CreateRandom();
+ _clockSourceId = UInt128Utils.CreateRandom();
_isRtcResetDetected = false;
- _isInitialized = false;
+ _isInitialized = false;
}
public UInt128 GetClockSourceId()
@@ -37,7 +37,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.Clock
return new TimeSpanType(0);
}
- public virtual void SetTestOffset(TimeSpanType testOffset) {}
+ public virtual void SetTestOffset(TimeSpanType testOffset) { }
public ResultCode GetRtcValue(out ulong rtcValue)
{
@@ -61,7 +61,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.Clock
return new TimeSpanType(0);
}
- public virtual void SetInternalOffset(TimeSpanType internalOffset) {}
+ public virtual void SetInternalOffset(TimeSpanType internalOffset) { }
public virtual SteadyClockTimePoint GetTimePoint(ITickSource tickSource)
{