aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/PerformanceCounter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/PerformanceCounter.cs')
-rw-r--r--Ryujinx.Common/PerformanceCounter.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Common/PerformanceCounter.cs b/Ryujinx.Common/PerformanceCounter.cs
index 1c2782e3..97ee23a2 100644
--- a/Ryujinx.Common/PerformanceCounter.cs
+++ b/Ryujinx.Common/PerformanceCounter.cs
@@ -32,7 +32,7 @@ namespace Ryujinx.Common
public static long TicksPerMillisecond { get; }
/// <summary>
- /// Gets the number of milliseconds elapsed since the system started.
+ /// Gets the number of ticks elapsed since the system started.
/// </summary>
public static long ElapsedTicks
{
@@ -76,7 +76,7 @@ namespace Ryujinx.Common
TicksPerHour = TicksPerMinute * 60;
TicksPerDay = TicksPerHour * 24;
- _ticksToNs = 1000000000.0 / (double)Stopwatch.Frequency;
+ _ticksToNs = 1000000000.0 / Stopwatch.Frequency;
}
}
} \ No newline at end of file