|
@@ -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)
|