diff options
author | german <german@thesoftwareartisans.com> | 2021-01-29 04:02:25 +0100 |
---|---|---|
committer | german <german@thesoftwareartisans.com> | 2021-01-29 04:02:25 +0100 |
commit | 8ba0cac71c081f2c0ec7b16956a56f5489915df4 (patch) | |
tree | 1f5cd98d8e5c30252c09a54c8317873161dd592d /src/core/hle/service | |
parent | Merge pull request #5786 from ReinUsesLisp/glsl-cbuf (diff) | |
download | yuzu-8ba0cac71c081f2c0ec7b16956a56f5489915df4.tar yuzu-8ba0cac71c081f2c0ec7b16956a56f5489915df4.tar.gz yuzu-8ba0cac71c081f2c0ec7b16956a56f5489915df4.tar.bz2 yuzu-8ba0cac71c081f2c0ec7b16956a56f5489915df4.tar.lz yuzu-8ba0cac71c081f2c0ec7b16956a56f5489915df4.tar.xz yuzu-8ba0cac71c081f2c0ec7b16956a56f5489915df4.tar.zst yuzu-8ba0cac71c081f2c0ec7b16956a56f5489915df4.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/acc/profile_manager.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/profile_manager.cpp b/src/core/hle/service/acc/profile_manager.cpp index d9865d56f..50b2c58e2 100644 --- a/src/core/hle/service/acc/profile_manager.cpp +++ b/src/core/hle/service/acc/profile_manager.cpp @@ -41,12 +41,18 @@ constexpr char ACC_SAVE_AVATORS_BASE_PATH[] = "/system/save/8000000000000010/su/ ProfileManager::ProfileManager() { ParseUserSaveFile(); - if (user_count == 0) + // Create an user if none are present + if (user_count == 0) { CreateNewUser(UUID::Generate(), "yuzu"); + } auto current = std::clamp<int>(Settings::values.current_user, 0, MAX_USERS - 1); - if (UserExistsIndex(current)) + + // If user index don't exist. Load the first user and change the active user + if (!UserExistsIndex(current)) { current = 0; + Settings::values.current_user = 0; + } OpenUser(*GetUser(current)); } |