summaryrefslogtreecommitdiff
path: root/src/input_common/input_mapping.cpp
diff options
context:
space:
mode:
authorGravatar german772023-03-05 11:00:00 -0600
committerGravatar Narr the Reg2023-03-07 19:31:52 -0600
commit9a9e5844d3865c923afc1238ce7a79b3ec111410 (patch)
tree022add86bcb2e79d4f0560bd0e164820372d3ae2 /src/input_common/input_mapping.cpp
parentMerge pull request #9786 from FernandoS27/the-gaia-is-a-lie (diff)
downloadyuzu-9a9e5844d3865c923afc1238ce7a79b3ec111410.tar.gz
yuzu-9a9e5844d3865c923afc1238ce7a79b3ec111410.tar.xz
yuzu-9a9e5844d3865c923afc1238ce7a79b3ec111410.zip
input_common: Increase mouse sensitivity range
Diffstat (limited to '')
-rw-r--r--src/input_common/input_mapping.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input_common/input_mapping.cpp b/src/input_common/input_mapping.cpp
index 2ff480ff9..9361b00c5 100644
--- a/src/input_common/input_mapping.cpp
+++ b/src/input_common/input_mapping.cpp
@@ -146,6 +146,7 @@ void MappingFactory::RegisterMotion(const MappingData& data) {
146 if (data.engine == "mouse") { 146 if (data.engine == "mouse") {
147 new_input.Set("motion", 0); 147 new_input.Set("motion", 0);
148 new_input.Set("pad", 1); 148 new_input.Set("pad", 1);
149 new_input.Set("threshold", 0.001f);
149 input_queue.Push(new_input); 150 input_queue.Push(new_input);
150 return; 151 return;
151 } 152 }