Add missing break statement
This was harmless because this is the last "case" of the switch, but for consistency, add the missing break.
This commit is contained in:
parent
1f65b1bf87
commit
ac038f276e
1 changed files with 1 additions and 0 deletions
|
@ -873,6 +873,7 @@ sc_screen_handle_event(struct sc_screen *screen, SDL_Event *event) {
|
|||
sc_screen_capture_mouse(screen, true);
|
||||
return;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
sc_input_manager_handle_event(&screen->im, event);
|
||||
|
|
Loading…
Reference in a new issue