SDLTest_CommonEvent: only set done when it is finished

This commit is contained in:
Anonymous Maarten 2024-02-27 11:21:57 +01:00 committed by Anonymous Maarten
parent 220340e944
commit c8372e20d6

View file

@ -2429,7 +2429,9 @@ int SDLTest_CommonEventMainCallbacks(SDLTest_CommonState *state, const SDL_Event
void SDLTest_CommonEvent(SDLTest_CommonState *state, SDL_Event *event, int *done)
{
*done = SDLTest_CommonEventMainCallbacks(state, event) ? 1 : 0;
if (SDLTest_CommonEventMainCallbacks(state, event)) {
*done = 1;
}
}
void SDLTest_CommonQuit(SDLTest_CommonState *state)