diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-10-10 03:48:35 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-10-24 01:31:28 +0200 |
commit | e7e3d5898e4750e8ca8d859791dddf27705819b9 (patch) | |
tree | b737963f0e36f72d62d9ddce60c9e647dba06790 /src/core | |
parent | Added Amiibo support (#1390) (diff) | |
download | yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar.gz yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar.bz2 yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar.lz yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar.xz yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar.zst yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.zip |
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 |