diff options
author | bunnei <bunneidev@gmail.com> | 2021-02-11 18:58:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 18:58:23 +0100 |
commit | e53b6ecc76cf8fe670e5056f75d8e798da66f9ff (patch) | |
tree | 21c0ed620d025fa8ab30465c83dfe57e4888816b /src/core | |
parent | Merge pull request #5908 from Morph1984/swkbd-finalize (diff) | |
parent | Add mouse panning (diff) | |
download | yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar.gz yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar.bz2 yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar.lz yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar.xz yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.tar.zst yuzu-e53b6ecc76cf8fe670e5056f75d8e798da66f9ff.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/settings.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index a324530bd..d849dded3 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -181,12 +181,13 @@ struct Values { std::string motion_device; std::string udp_input_servers; - bool emulate_analog_keyboard; - + bool mouse_panning; + float mouse_panning_sensitivity; bool mouse_enabled; std::string mouse_device; MouseButtonsRaw mouse_buttons; + bool emulate_analog_keyboard; bool keyboard_enabled; KeyboardKeysRaw keyboard_keys; KeyboardModsRaw keyboard_mods; |