summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/profile_manager.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-10-31 00:37:28 +0100
committerbunnei <bunneidev@gmail.com>2022-11-03 00:09:30 +0100
commit75ab52f05b39a625c039705f9290278efdad98f7 (patch)
tree71671002c392744436411b25ecf56303c3b9d523 /src/core/hle/service/acc/profile_manager.h
parentMerge pull request #9171 from driskiou/fix-menu-separator (diff)
downloadyuzu-75ab52f05b39a625c039705f9290278efdad98f7.tar
yuzu-75ab52f05b39a625c039705f9290278efdad98f7.tar.gz
yuzu-75ab52f05b39a625c039705f9290278efdad98f7.tar.bz2
yuzu-75ab52f05b39a625c039705f9290278efdad98f7.tar.lz
yuzu-75ab52f05b39a625c039705f9290278efdad98f7.tar.xz
yuzu-75ab52f05b39a625c039705f9290278efdad98f7.tar.zst
yuzu-75ab52f05b39a625c039705f9290278efdad98f7.zip
Diffstat (limited to 'src/core/hle/service/acc/profile_manager.h')
-rw-r--r--src/core/hle/service/acc/profile_manager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/profile_manager.h b/src/core/hle/service/acc/profile_manager.h
index 135f7d0d5..993a5a57a 100644
--- a/src/core/hle/service/acc/profile_manager.h
+++ b/src/core/hle/service/acc/profile_manager.h
@@ -86,6 +86,8 @@ public:
UserIDArray GetOpenUsers() const;
UserIDArray GetAllUsers() const;
Common::UUID GetLastOpenedUser() const;
+ UserIDArray GetStoredOpenedUsers() const;
+ void StoreOpenedUsers();
bool CanSystemRegisterUser() const;
@@ -101,6 +103,7 @@ private:
bool RemoveProfileAtIndex(std::size_t index);
std::array<ProfileInfo, MAX_USERS> profiles{};
+ std::array<ProfileInfo, MAX_USERS> stored_opened_profiles{};
std::size_t user_count{};
Common::UUID last_opened_user{};
};