Skip to content

Commit

Permalink
Merge branch 'enable_multitouch' of github.com:p-an/anbox into enable…
Browse files Browse the repository at this point in the history
…_multitouch
  • Loading branch information
p-an committed Aug 12, 2019
2 parents 62c173c + fff7341 commit 64af9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/anbox/platform/sdl/platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ void Platform::process_input_event(const SDL_Event &event) {
y = event.button.y;
if (!adjust_coordinates(x, y))
break;
push_finger_down(x,y,emulated_touch_id_,touch_events);
push_finger_down(x, y, emulated_touch_id_, touch_events);
}
break;
case SDL_MOUSEBUTTONUP:
Expand Down Expand Up @@ -276,7 +276,7 @@ void Platform::process_input_event(const SDL_Event &event) {

if (!calculate_touch_coordinates(event, x, y))
break;
push_finger_motion(x,y,event.tfinger.fingerId,touch_events);
push_finger_motion(x, y, event.tfinger.fingerId, touch_events);
break;
}
default:
Expand Down

0 comments on commit 64af9c1

Please sign in to comment.