Mercurial > sdl-ios-xcode
diff src/video/picogui/SDL_pgevents.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 | c9b51268668f |
children | 19418e4422cb |
line wrap: on
line diff
--- a/src/video/picogui/SDL_pgevents.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/video/picogui/SDL_pgevents.c Tue Feb 07 06:59:48 2006 +0000 @@ -44,7 +44,7 @@ int PG_HandleKey(struct pgEvent *evt) { SDL_keysym sym; - memset(&sym,0,sizeof(sym)); + SDL_memset(&sym,0,sizeof(sym)); sym.sym = evt->e.kbd.key; sym.mod = evt->e.kbd.mods; SDL_PrivateKeyboard(evt->type == PG_WE_KBD_KEYDOWN, &sym); @@ -54,7 +54,7 @@ int PG_HandleChar(struct pgEvent *evt) { SDL_keysym sym; - memset(&sym,0,sizeof(sym)); + SDL_memset(&sym,0,sizeof(sym)); sym.unicode = evt->e.kbd.key; sym.mod = evt->e.kbd.mods; SDL_PrivateKeyboard(evt->type == PG_WE_KBD_KEYDOWN, &sym);