From 441d990ebddcbe6f6f1580bcdccf0ce0a9674ae6 Mon Sep 17 00:00:00 2001 From: Tomas Groth Christensen Date: Tue, 28 Nov 2023 14:44:09 +0100 Subject: [PATCH] Adjust to changes done in InfiniTime PR 1359 --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 8070db7..4f509d4 100644 --- a/main.cpp +++ b/main.cpp @@ -702,11 +702,11 @@ class Framework { info.isValid = true; info.touching = true; info.gesture = gesture; - touchHandler.ProcessTouchInfo(info); + touchHandler.ProcessTouchInfo(info, false); displayApp.PushMessage(Pinetime::Applications::Display::Messages::TouchEvent); info.touching = false; info.gesture = Pinetime::Drivers::Cst816S::Gestures::None; - touchHandler.ProcessTouchInfo(info); + touchHandler.ProcessTouchInfo(info, false); } // modify the simulated controller depending on the pressed key void handle_key(SDL_Keycode key) {