diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-10-09 21:48:35 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-10-23 19:31:28 -0400 |
commit | e7e3d5898e4750e8ca8d859791dddf27705819b9 (patch) | |
tree | b737963f0e36f72d62d9ddce60c9e647dba06790 /src/core | |
parent | 50e4e81fd3a998813316cdabd05ef56b12c91fae (diff) |
settings: Add users and current_user settings and remove username
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/settings.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index ca80718e2..0fa726d5d 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -8,6 +8,7 @@ #include <atomic> #include <string> #include "common/common_types.h" +#include "core/hle/service/acc/profile_manager.h" namespace Settings { @@ -114,7 +115,8 @@ struct Values { // System bool use_docked_mode; bool enable_nfc; - std::string username; + int current_user; + std::vector<std::pair<std::string, Service::Account::UUID>> users; int language_index; // Controls |