Merge pull request #568 from npes87184/dev

Correct return value type in handle_event
pull/569/head
Romain Vimont 5 years ago committed by GitHub
commit f710d76c9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -132,7 +132,7 @@ handle_event(SDL_Event *event, bool control) {
screen_show_window(&screen);
}
if (!screen_update_frame(&screen, &video_buffer)) {
return false;
return EVENT_RESULT_CONTINUE;
}
break;
case SDL_WINDOWEVENT:

Loading…
Cancel
Save