[HLE/Service] Fix ToCalendarTimeWithMyRule

This commit is contained in:
gdkchan 2018-04-10 21:16:27 -03:00
parent d8550b8cda
commit a15e282909
2 changed files with 11 additions and 18 deletions

View file

@ -10,7 +10,7 @@ namespace Ryujinx.Core.OsHle.Services.Time
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
private static DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
private static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
private SystemClockType ClockType;