Skip to content

Commit

Permalink
fit the code style
Browse files Browse the repository at this point in the history
  • Loading branch information
p-an authored Jul 16, 2019
1 parent 4a0d4eb commit fff7341
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 fff7341

Please sign in to comment.