Log SDL_WaitEvent() error

This commit is contained in:
Romain Vimont 2024-03-01 01:39:11 +01:00
parent fd0f432e87
commit 2589fdb796

View file

@ -191,6 +191,8 @@ event_loop(struct scrcpy *s) {
break;
}
}
LOGE("SDL_WaitEvent() failed: %s", SDL_GetError());
return SCRCPY_EXIT_FAILURE;
}