diff options
author | german77 <juangerman-13@hotmail.com> | 2022-01-09 06:23:40 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2022-04-16 07:49:26 +0200 |
commit | d2f9412cf1717f884855af22793f3a1e5815c967 (patch) | |
tree | a1beab6c5d35dbfb8a58ef45f919e9d4a7d1d58d /src/common/settings.h | |
parent | hidbus: Implement hidbus and ringcon (diff) | |
download | yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.gz yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.bz2 yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.lz yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.xz yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.zst yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.zip |
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 86e0fa140..3b7be63b3 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -590,6 +590,9 @@ struct Values { BasicSetting<int> touch_from_button_map_index{0, "touch_from_button_map"}; std::vector<TouchFromButtonMap> touch_from_button_maps; + BasicSetting<bool> enable_ring_controller{true, "enable_ring_controller"}; + RingconRaw ringcon_analogs; + // Data Storage BasicSetting<bool> use_virtual_sd{true, "use_virtual_sd"}; BasicSetting<bool> gamecard_inserted{false, "gamecard_inserted"}; |