Mercurial > sdl-ios-xcode
changeset 383:5e31d8bfffcf
SDL_PushEvent() now returns values as documented.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 29 May 2002 22:29:46 +0000 |
parents | 74bdcae44bf5 |
children | 1870bb49ab18 |
files | src/events/SDL_events.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/events/SDL_events.c Wed May 29 20:47:19 2002 +0000 +++ b/src/events/SDL_events.c Wed May 29 22:29:46 2002 +0000 @@ -392,7 +392,7 @@ int SDL_PushEvent(SDL_Event *event) { - return(SDL_PeepEvents(event, 1, SDL_ADDEVENT, 0)); + return((SDL_PeepEvents(event, 1, SDL_ADDEVENT, 0) == 0) ? -1 : 0); } void SDL_SetEventFilter (SDL_EventFilter filter)