Save Common implementation (#434)
* save common implementation * remove zero userid check * Renamed UserId to UInt128 * fix index in hex conversion
This commit is contained in:
parent
5b8ccb717f
commit
caa181edf2
9 changed files with 97 additions and 108 deletions
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using Ryujinx.HLE.Utilities;
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.SystemState
|
||||
{
|
||||
|
@ -6,7 +7,7 @@ namespace Ryujinx.HLE.HOS.SystemState
|
|||
{
|
||||
private static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
||||
|
||||
public UserId Uuid { get; private set; }
|
||||
public UInt128 Uuid { get; private set; }
|
||||
|
||||
public string Name { get; private set; }
|
||||
|
||||
|
@ -15,7 +16,7 @@ namespace Ryujinx.HLE.HOS.SystemState
|
|||
public OpenCloseState AccountState { get; set; }
|
||||
public OpenCloseState OnlinePlayState { get; set; }
|
||||
|
||||
public UserProfile(UserId Uuid, string Name)
|
||||
public UserProfile(UInt128 Uuid, string Name)
|
||||
{
|
||||
this.Uuid = Uuid;
|
||||
this.Name = Name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue