This commit is contained in:
gdkchan 2018-08-14 13:30:11 -03:00
commit 1f2df15b8f

View file

@ -8,10 +8,10 @@ namespace Ryujinx.HLE.OsHle.SystemState
public UserId Uuid { get; private set; } public UserId Uuid { get; private set; }
public long LastModifiedTimestamp { get; private set; }
public string Name { get; private set; } public string Name { get; private set; }
public long LastModifiedTimestamp { get; private set; }
public OpenCloseState AccountState { get; set; } public OpenCloseState AccountState { get; set; }
public OpenCloseState OnlinePlayState { get; set; } public OpenCloseState OnlinePlayState { get; set; }
@ -20,11 +20,11 @@ namespace Ryujinx.HLE.OsHle.SystemState
this.Uuid = Uuid; this.Uuid = Uuid;
this.Name = Name; this.Name = Name;
LastModifiedTimestamp = 0;
AccountState = OpenCloseState.Closed; AccountState = OpenCloseState.Closed;
OnlinePlayState = OpenCloseState.Closed; OnlinePlayState = OpenCloseState.Closed;
LastModifiedTimestamp = 0;
UpdateTimestamp(); UpdateTimestamp();
} }