summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-10-09 21:48:35 -0400
committerGravatar Zach Hilman2018-10-23 19:31:28 -0400
commite7e3d5898e4750e8ca8d859791dddf27705819b9 (patch)
treeb737963f0e36f72d62d9ddce60c9e647dba06790 /src/core/settings.h
parentAdded Amiibo support (#1390) (diff)
downloadyuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar.gz
yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.tar.xz
yuzu-e7e3d5898e4750e8ca8d859791dddf27705819b9.zip
settings: Add users and current_user settings and remove username
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h4
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 @@
8#include <atomic> 8#include <atomic>
9#include <string> 9#include <string>
10#include "common/common_types.h" 10#include "common/common_types.h"
11#include "core/hle/service/acc/profile_manager.h"
11 12
12namespace Settings { 13namespace Settings {
13 14
@@ -114,7 +115,8 @@ struct Values {
114 // System 115 // System
115 bool use_docked_mode; 116 bool use_docked_mode;
116 bool enable_nfc; 117 bool enable_nfc;
117 std::string username; 118 int current_user;
119 std::vector<std::pair<std::string, Service::Account::UUID>> users;
118 int language_index; 120 int language_index;
119 121
120 // Controls 122 // Controls