End refactoring IPC objects

corrections
This commit is contained in:
AcK77 2018-02-10 00:34:13 +01:00
parent 4909083901
commit dc8712ed71
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ namespace Ryujinx.OsHle.Objects.Am
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, GetSize },
{ 11, Read }
{ 11, Read }
};
this.Storage = Storage;

View file

@ -10,7 +10,7 @@ namespace Ryujinx.OsHle.Objects.Time
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
private DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
private static DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
public ISystemClock()
{