summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Frederic Laing2018-11-06 16:38:10 +0100
committerGravatar Frederic Laing2018-11-06 16:38:10 +0100
commitd34d0bfc8702ec8d4ef9a3cd745c318e9a3562b3 (patch)
tree5ea559644ff97482cd9bdc67c16083576f8480b3 /src/core
parentMerge pull request #1616 from FernandoS27/cube-array (diff)
downloadyuzu-d34d0bfc8702ec8d4ef9a3cd745c318e9a3562b3.tar.gz
yuzu-d34d0bfc8702ec8d4ef9a3cd745c318e9a3562b3.tar.xz
yuzu-d34d0bfc8702ec8d4ef9a3cd745c318e9a3562b3.zip
configure_system: Fix compiler warning
Diffstat (limited to 'src/core')
-rw-r--r--src/core/settings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index b5aeff29b..a8954647f 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -114,8 +114,8 @@ struct Values {
114 // System 114 // System
115 bool use_docked_mode; 115 bool use_docked_mode;
116 bool enable_nfc; 116 bool enable_nfc;
117 int current_user; 117 s32 current_user;
118 int language_index; 118 s32 language_index;
119 119
120 // Controls 120 // Controls
121 std::array<std::string, NativeButton::NumButtons> buttons; 121 std::array<std::string, NativeButton::NumButtons> buttons;