diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-22 22:08:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-22 22:08:35 -0500 |
| commit | ca8a804a3c28f53bba9d1f9080ae15c13f60ce9c (patch) | |
| tree | ac8c6c62c2f43c41e887b269520c6d2482cf95a2 /src/core/hle/service/hid/controllers/touchscreen.cpp | |
| parent | 8f3e2a1b48a4f83c90a3b8bf10dd1dc661a69958 (diff) | |
| parent | db2785082b4824dbeb66b0783881a8ed3ce8b1a1 (diff) | |
Merge pull request #9842 from german77/proper_real_mouse
core: hid: Fix native mouse mapping
Diffstat (limited to 'src/core/hle/service/hid/controllers/touchscreen.cpp')
| -rw-r--r-- | src/core/hle/service/hid/controllers/touchscreen.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/controllers/touchscreen.cpp b/src/core/hle/service/hid/controllers/touchscreen.cpp index 1da8d3eb0..d90a4e732 100644 --- a/src/core/hle/service/hid/controllers/touchscreen.cpp +++ b/src/core/hle/service/hid/controllers/touchscreen.cpp @@ -58,6 +58,11 @@ void Controller_Touchscreen::OnUpdate(const Core::Timing::CoreTiming& core_timin } if (!finger.pressed && current_touch.pressed) { + // Ignore all touch fingers if disabled + if (!Settings::values.touchscreen.enabled) { + continue; + } + finger.attribute.start_touch.Assign(1); finger.pressed = true; finger.position = current_touch.position; |
