diff options
| author | 2021-07-05 20:58:52 -0500 | |
|---|---|---|
| committer | 2021-09-18 23:22:48 +0200 | |
| commit | 33a1d790e8a5f67c73d0eef4a141f936345f104f (patch) | |
| tree | 16138c61b831ca3a6016fbb31fe183fbc557c7dd /src/common/settings.h | |
| parent | input_common/tas: Add swap controller (diff) | |
| download | yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar.gz yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar.xz yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.zip | |
input_common/tas: Document the main class
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index cf12c325c..c53d5acc3 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -512,17 +512,14 @@ struct Values { | |||
| 512 | "motion_device"}; | 512 | "motion_device"}; |
| 513 | BasicSetting<std::string> udp_input_servers{"127.0.0.1:26760", "udp_input_servers"}; | 513 | BasicSetting<std::string> udp_input_servers{"127.0.0.1:26760", "udp_input_servers"}; |
| 514 | 514 | ||
| 515 | BasicSetting<bool> pause_tas_on_load { false, "pause_tas_on_load" }; | 515 | BasicSetting<bool> pause_tas_on_load{true, "pause_tas_on_load"}; |
| 516 | BasicSetting<bool> tas_enable{ false, "tas_enable" }; | 516 | BasicSetting<bool> tas_enable{false, "tas_enable"}; |
| 517 | BasicSetting<bool> tas_loop{ false, "tas_loop" }; | 517 | BasicSetting<bool> tas_loop{false, "tas_loop"}; |
| 518 | BasicSetting<bool> tas_swap_controllers{ false, "tas_swap_controllers" }; | 518 | BasicSetting<bool> tas_swap_controllers{true, "tas_swap_controllers"}; |
| 519 | BasicSetting<bool> is_cpu_boosted{ false, "is_cpu_boosted" }; | ||
| 520 | " }; | ||
| 521 | 519 | ||
| 522 | BasicSetting<bool> mouse_panning{false, "mouse_panning"}; | 520 | BasicSetting<bool> mouse_panning{false, "mouse_panning"}; |
| 523 | BasicRangedSetting<u8> mouse_panning_sensitivity{10, 1, 100, "mouse_panning_sensitivity"}; | 521 | BasicRangedSetting<u8> mouse_panning_sensitivity{10, 1, 100, "mouse_panning_sensitivity"}; |
| 524 | BasicSetting<bool> mouse_enabled{false, "mouse_enabled"}; | 522 | BasicSetting<bool> mouse_enabled{false, "mouse_enabled"}; |
| 525 | |||
| 526 | std::string mouse_device; | 523 | std::string mouse_device; |
| 527 | MouseButtonsRaw mouse_buttons; | 524 | MouseButtonsRaw mouse_buttons; |
| 528 | 525 | ||