Mercurial > sdl-ios-xcode
diff src/events/SDL_active.c @ 1336:3692456e7b0f
Use SDL_ prefixed versions of C library functions.
FIXME:
Change #include <stdlib.h> to #include "SDL_stdlib.h"
Change #include <string.h> to #include "SDL_string.h"
Make sure nothing else broke because of this...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Feb 2006 06:59:48 +0000 |
parents | 450721ad5436 |
children | c71e05b4dc2e |
line wrap: on
line diff
--- a/src/events/SDL_active.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/events/SDL_active.c Tue Feb 07 06:59:48 2006 +0000 @@ -73,7 +73,7 @@ posted = 0; if ( SDL_ProcessEvents[SDL_ACTIVEEVENT] == SDL_ENABLE ) { SDL_Event event; - memset(&event, 0, sizeof(event)); + SDL_memset(&event, 0, sizeof(event)); event.type = SDL_ACTIVEEVENT; event.active.gain = gain; event.active.state = state;