Timing: Align static variable initialization
This commit is contained in:
parent
9340c72084
commit
a49ee96bad
1 changed files with 4 additions and 4 deletions
|
@ -56,10 +56,10 @@ namespace Ryujinx.Common
|
||||||
static PerformanceCounter()
|
static PerformanceCounter()
|
||||||
{
|
{
|
||||||
TicksPerMillisecond = Stopwatch.Frequency / 1000;
|
TicksPerMillisecond = Stopwatch.Frequency / 1000;
|
||||||
TicksPerSecond = Stopwatch.Frequency;
|
TicksPerSecond = Stopwatch.Frequency;
|
||||||
TicksPerMinute = TicksPerSecond * 60;
|
TicksPerMinute = TicksPerSecond * 60;
|
||||||
TicksPerHour = TicksPerMinute * 60;
|
TicksPerHour = TicksPerMinute * 60;
|
||||||
TicksPerDay = TicksPerHour * 24;
|
TicksPerDay = TicksPerHour * 24;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue