Mercurial > sdl-ios-xcode
diff src/events/SDL_keyboard.c @ 1722:5daa04d862f1 SDL-1.3
Added a userdata parameter for event filters.
Added a function to filter the existing queued events.
Added explicit support for relative mouse mode to the API.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 30 Jun 2006 08:18:44 +0000 |
parents | a1ebb17f9c52 |
children | 6c63fc2bd986 |
line wrap: on
line diff
--- a/src/events/SDL_keyboard.c Fri Jun 30 05:50:35 2006 +0000 +++ b/src/events/SDL_keyboard.c Fri Jun 30 08:18:44 2006 +0000 @@ -632,7 +632,7 @@ keyboard->repeat.firsttime = 1; keyboard->repeat.timestamp = 1; } - if ((SDL_EventOK == NULL) || SDL_EventOK(&event)) { + if ((SDL_EventOK == NULL) || SDL_EventOK(SDL_EventOKParam, &event)) { posted = 1; SDL_PushEvent(&event); } @@ -669,7 +669,8 @@ if (interval > (Uint32) keyboard->repeat.interval) { keyboard->repeat.timestamp = now; if ((SDL_EventOK == NULL) - || SDL_EventOK(&keyboard->repeat.evt)) { + || SDL_EventOK(SDL_EventOKParam, + &keyboard->repeat.evt)) { SDL_PushEvent(&keyboard->repeat.evt); } }