Add missing break statement

This was harmless because this is the last "case" of the switch, but for
consistency, add the missing break.
raw_video_stream
Romain Vimont 2 years ago
parent 1f65b1bf87
commit ac038f276e

@ -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…
Cancel
Save