diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/acc/profile_manager.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/profile_manager.cpp b/src/core/hle/service/acc/profile_manager.cpp index 1633d5d48..03021cb64 100644 --- a/src/core/hle/service/acc/profile_manager.cpp +++ b/src/core/hle/service/acc/profile_manager.cpp | |||
| @@ -7,7 +7,9 @@ constexpr ResultCode ERROR_TOO_MANY_USERS(ErrorModule::Account, -1); | |||
| 7 | constexpr ResultCode ERROR_ARGUMENT_IS_NULL(ErrorModule::Account, 20); | 7 | constexpr ResultCode ERROR_ARGUMENT_IS_NULL(ErrorModule::Account, 20); |
| 8 | 8 | ||
| 9 | ProfileManager::ProfileManager() { | 9 | ProfileManager::ProfileManager() { |
| 10 | CreateNewUser(UUID{1, 0}, Settings::values.username); | 10 | auto user_uuid = UUID{1, 0}; |
| 11 | CreateNewUser(user_uuid, Settings::values.username); | ||
| 12 | OpenUser(user_uuid); | ||
| 11 | } | 13 | } |
| 12 | 14 | ||
| 13 | size_t ProfileManager::AddToProfiles(const ProfileInfo& user) { | 15 | size_t ProfileManager::AddToProfiles(const ProfileInfo& user) { |