SDLTest_CommonEvent: only set done when it is finished
This commit is contained in:
parent
220340e944
commit
c8372e20d6
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue