Skip to content

Commit fff7341

Browse files
authored
fit the code style
1 parent 4a0d4eb commit fff7341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/anbox/platform/sdl/platform.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ void Platform::process_input_event(const SDL_Event &event) {
204204
y = event.button.y;
205205
if (!adjust_coordinates(x, y))
206206
break;
207-
push_finger_down(x,y,emulated_touch_id_,touch_events);
207+
push_finger_down(x, y, emulated_touch_id_, touch_events);
208208
}
209209
break;
210210
case SDL_MOUSEBUTTONUP:
@@ -276,7 +276,7 @@ void Platform::process_input_event(const SDL_Event &event) {
276276

277277
if (!calculate_touch_coordinates(event, x, y))
278278
break;
279-
push_finger_motion(x,y,event.tfinger.fingerId,touch_events);
279+
push_finger_motion(x, y, event.tfinger.fingerId, touch_events);
280280
break;
281281
}
282282
default:

0 commit comments

Comments
 (0)