We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62c173c + fff7341 commit 64af9c1Copy full SHA for 64af9c1
src/anbox/platform/sdl/platform.cpp
@@ -204,7 +204,7 @@ void Platform::process_input_event(const SDL_Event &event) {
204
y = event.button.y;
205
if (!adjust_coordinates(x, y))
206
break;
207
- push_finger_down(x,y,emulated_touch_id_,touch_events);
+ push_finger_down(x, y, emulated_touch_id_, touch_events);
208
}
209
210
case SDL_MOUSEBUTTONUP:
@@ -276,7 +276,7 @@ void Platform::process_input_event(const SDL_Event &event) {
276
277
if (!calculate_touch_coordinates(event, x, y))
278
279
- push_finger_motion(x,y,event.tfinger.fingerId,touch_events);
+ push_finger_motion(x, y, event.tfinger.fingerId, touch_events);
280
281
282
default:
0 commit comments