mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-01 11:10:47 -07:00
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:
committed by
Thomas Guillemard
parent
5b8ccb717f
commit
caa181edf2
@ -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;
|
||||
|
Reference in New Issue
Block a user