diff options
| author | 2018-03-26 22:24:31 -0400 | |
|---|---|---|
| committer | 2018-03-26 23:02:35 -0400 | |
| commit | 12b05c719eac7ed289a1d3d2acfb94704326fac1 (patch) | |
| tree | bc325f8b272ee36157eb8f06c1fae89bb6d8151d /src/core/settings.h | |
| parent | Merge pull request #279 from bunnei/tegra-progress-3 (diff) | |
| download | yuzu-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.h | 3 |
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 | ||
| 113 | struct Values { | 113 | struct 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; |