aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs
AgeCommit message (Collapse)Author
2022-12-07acc: Stub CheckNetworkServiceAvailabilityAsync (#4052)Ac_K
2022-09-27Fix ListOpenContextStoredUsers and stub LoadOpenContext (#3718)gdkchan
* Fix ListOpenContextStoredUsers and stub LoadOpenContext * Remove nonsensical comment
2021-06-21account: Fix wrong condition in TrySelectUserWithoutInteraction (#2384)Ac_K
* account: Fix wrong condition in TrySelectUserWithoutInteraction Since the implementation of User Profiles, we can get more than one profile stored. This PR fixes a wrong condition in `TrySelectUserWithoutInteraction`. Closes #2320 * Some cleanup
2021-04-24HLE: Fix integer sign inconcistency accross the codebase (#2222)Mary
* Make all title id instances unsigned * Replace address and size with ulong instead of signed types Long overdue change. Also change some logics here and there to optimize with the new memory manager. * Address Ac_K's comments * Remove uneeded cast all around * Fixes some others misalignment
2021-04-13account: Adds AccountManager (#2184)Ac_K
* 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
2021-01-02account: Services Refactoring (#1833)Ac_K
* account: Services Refactoring * Remove extra empty space * Fix IProfile::Get * address gdkchan feedback