mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
Fix switch-case style
Remove unnecessary braces around the switch case and add the missing break to keep the style consistent with other cases.
This commit is contained in:
parent
a9de53f0cb
commit
1a99a46b57
1 changed files with 2 additions and 2 deletions
|
|
@ -1166,8 +1166,8 @@ sc_input_manager_handle_event(struct sc_input_manager *im,
|
|||
case SDL_EVENT_GAMEPAD_BUTTON_UP:
|
||||
sc_input_manager_process_gamepad_button(im, &event->gbutton);
|
||||
break;
|
||||
case SDL_EVENT_DROP_FILE: {
|
||||
case SDL_EVENT_DROP_FILE:
|
||||
sc_input_manager_process_file(im, &event->drop);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue