summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-26 22:24:31 -0400
committerGravatar bunnei2018-03-26 23:02:35 -0400
commit12b05c719eac7ed289a1d3d2acfb94704326fac1 (patch)
treebc325f8b272ee36157eb8f06c1fae89bb6d8151d /src/core/settings.h
parentMerge pull request #279 from bunnei/tegra-progress-3 (diff)
downloadyuzu-12b05c719eac7ed289a1d3d2acfb94704326fac1.tar.gz
yuzu-12b05c719eac7ed289a1d3d2acfb94704326fac1.tar.xz
yuzu-12b05c719eac7ed289a1d3d2acfb94704326fac1.zip
config: Add setting for whether the system is docked or not.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index 6f8cd0f03..002d25dbd 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -111,6 +111,9 @@ enum class CpuCore {
111}; 111};
112 112
113struct Values { 113struct Values {
114 // System
115 bool is_docked;
116
114 // Controls 117 // Controls
115 std::array<std::string, NativeButton::NumButtons> buttons; 118 std::array<std::string, NativeButton::NumButtons> buttons;
116 std::array<std::string, NativeAnalog::NumAnalogs> analogs; 119 std::array<std::string, NativeAnalog::NumAnalogs> analogs;