diff options
| author | 2021-07-08 23:24:31 -0400 | |
|---|---|---|
| committer | 2021-07-08 23:24:31 -0400 | |
| commit | 0ed107776321b67cfbc1d3866eacc4f661433171 (patch) | |
| tree | ee4a449765edc3b705a088faa6387e4097d104ac /src/common/settings.h | |
| parent | config: Remove float {Read,Write}Setting variants (diff) | |
| download | yuzu-0ed107776321b67cfbc1d3866eacc4f661433171.tar.gz yuzu-0ed107776321b67cfbc1d3866eacc4f661433171.tar.xz yuzu-0ed107776321b67cfbc1d3866eacc4f661433171.zip | |
configure_input: Use u8 for mouse sensitivity
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 898798212..7c6878f62 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -365,7 +365,7 @@ struct Values { | |||
| 365 | "udp_input_servers"}; | 365 | "udp_input_servers"}; |
| 366 | 366 | ||
| 367 | BasicSetting<bool> mouse_panning{false, "mouse_panning"}; | 367 | BasicSetting<bool> mouse_panning{false, "mouse_panning"}; |
| 368 | BasicSetting<float> mouse_panning_sensitivity{1.0f, "mouse_panning_sensitivity"}; | 368 | BasicSetting<u8> mouse_panning_sensitivity{1, "mouse_panning_sensitivity"}; |
| 369 | BasicSetting<bool> mouse_enabled{false, "mouse_enabled"}; | 369 | BasicSetting<bool> mouse_enabled{false, "mouse_enabled"}; |
| 370 | std::string mouse_device; | 370 | std::string mouse_device; |
| 371 | MouseButtonsRaw mouse_buttons; | 371 | MouseButtonsRaw mouse_buttons; |