X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Fsystem.c;h=15e86a4afbc7084012132acac0f133577914085f;hp=c7270d93f77540db4e19f1bd2392db493551e3ec;hb=c38790fcee093efb156366bb4a02dbde55085ca4;hpb=6357574062edeea7adf7b5522687309001100e82 diff --git a/src/libgame/system.c b/src/libgame/system.c index c7270d93..15e86a4a 100644 --- a/src/libgame/system.c +++ b/src/libgame/system.c @@ -1733,12 +1733,18 @@ void StopTextInput(void) #endif } -boolean CheckCloseWindowEvent(ClientMessageEvent *event) +void PushUserEvent(int code, int value1, int value2) { - if (event->type != EVENT_CLIENTMESSAGE) - return FALSE; + UserEvent event; + + SDL_memset(&event, 0, sizeof(event)); + + event.type = EVENT_USER; + event.code = code; + event.value1 = value1; + event.value2 = value2; - return TRUE; // the only possible message here is SDL_QUIT + SDL_PushEvent((SDL_Event *)&event); }