aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/hid/controllers/gesture.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2022-06-10 13:13:46 -0500
committerNarr the Reg <juangerman-13@hotmail.com>2022-06-10 13:14:31 -0500
commitbc8699a9fa653e0fa35d3f434979b99054ffe4b7 (patch)
treee11e81fa798807b419f5b260721beec2269f3d14 /src/core/hle/service/hid/controllers/gesture.cpp
parent073714a762d4ef529c5bef35b0317472ae661711 (diff)
service: hid: Fix gesture regression
Diffstat (limited to 'src/core/hle/service/hid/controllers/gesture.cpp')
-rw-r--r--src/core/hle/service/hid/controllers/gesture.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/controllers/gesture.cpp b/src/core/hle/service/hid/controllers/gesture.cpp
index 3eae1ae35..32e0708ba 100644
--- a/src/core/hle/service/hid/controllers/gesture.cpp
+++ b/src/core/hle/service/hid/controllers/gesture.cpp
@@ -61,6 +61,7 @@ void Controller_Gesture::OnUpdate(const Core::Timing::CoreTiming& core_timing) {
}
last_update_timestamp = shared_memory->gesture_lifo.timestamp;
+ UpdateGestureSharedMemory(gesture, time_difference);
}
void Controller_Gesture::ReadTouchInput() {
@@ -94,8 +95,7 @@ bool Controller_Gesture::ShouldUpdateGesture(const GestureProperties& gesture,
return false;
}
-void Controller_Gesture::UpdateGestureSharedMemory(u8* data, std::size_t size,
- GestureProperties& gesture,
+void Controller_Gesture::UpdateGestureSharedMemory(GestureProperties& gesture,
f32 time_difference) {
GestureType type = GestureType::Idle;
GestureAttribute attributes{};