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:
Romain Vimont 2022-01-23 14:57:12 +01:00
parent 1f65b1bf87
commit ac038f276e

View file

@ -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);