diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2023-02-21 12:41:34 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-02-21 19:48:38 -0600 |
| commit | 9477181d09518a183c8241af620a1df4f0c839f8 (patch) | |
| tree | b98a3e9bafe0a934bc0c42296cb64012fec4a849 /src/core/hle/service/hid/controllers/touchscreen.cpp | |
| parent | 8f3e2a1b48a4f83c90a3b8bf10dd1dc661a69958 (diff) | |
core: hid: Fix native mouse mappings
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; |
