From 7344dee47598a26fe72de859c311354f834ca2ed Mon Sep 17 00:00:00 2001 From: Ac_K Date: Tue, 13 Apr 2021 03:16:43 +0200 Subject: account: Adds AccountManager (#2184) * account: Adds Account Manager In a way to have Custom User Profiles merged in master faster, this PR adds a `AccountManager` class (based on `AccountUtils` class) and the following changes have been made: - Adds a "default profile values" which were the old hardcoded ones. - The image profile is moved to the Account service folder. - The hardcoded UserId for the savedata is now using the `AccountManager` last opened one. - The DeviceId in Mii service is changed to the right value (checked by REd sys:set call). * Fix csproj * Addresses gdkchan's comments * Fix UserProfile fields * Fix mii GetDeviceId() * Update Ryujinx.HLE.csproj --- Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.HLE/HOS/Applets/PlayerSelect') diff --git a/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs b/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs index 418f5c10..9cfe0253 100644 --- a/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs +++ b/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs @@ -40,7 +40,7 @@ namespace Ryujinx.HLE.HOS.Applets private byte[] BuildResponse() { - UserProfile currentUser = _system.State.Account.LastOpenedUser; + UserProfile currentUser = _system.AccountManager.LastOpenedUser; using (MemoryStream stream = new MemoryStream()) using (BinaryWriter writer = new BinaryWriter(stream)) -- cgit v1.2.3