Skip to content

Commit

Permalink
Adjust to changes done in InfiniTime PR 1359
Browse files Browse the repository at this point in the history
  • Loading branch information
tgcfoss committed Nov 28, 2023
1 parent 43880fd commit 441d990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 441d990

Please sign in to comment.