Mercurial > sdl-ios-xcode
diff src/video/ataricommon/SDL_atarievents.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 | 604d73db6802 |
line wrap: on
line diff
--- a/src/video/ataricommon/SDL_atarievents.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/video/ataricommon/SDL_atarievents.c Tue Feb 07 06:59:48 2006 +0000 @@ -82,25 +82,25 @@ break; } - envr = getenv("SDL_ATARI_EVENTSDRIVER"); + envr = SDL_getenv("SDL_ATARI_EVENTSDRIVER"); if (!envr) { return; } - if (strcmp(envr, "ikbd") == 0) { + if (SDL_strcmp(envr, "ikbd") == 0) { this->InitOSKeymap=AtariIkbd_InitOSKeymap; this->PumpEvents=AtariIkbd_PumpEvents; Atari_ShutdownEvents=AtariIkbd_ShutdownEvents; } - if (strcmp(envr, "gemdos") == 0) { + if (SDL_strcmp(envr, "gemdos") == 0) { this->InitOSKeymap=AtariGemdos_InitOSKeymap; this->PumpEvents=AtariGemdos_PumpEvents; Atari_ShutdownEvents=AtariGemdos_ShutdownEvents; } - if (strcmp(envr, "bios") == 0) { + if (SDL_strcmp(envr, "bios") == 0) { this->InitOSKeymap=AtariBios_InitOSKeymap; this->PumpEvents=AtariBios_PumpEvents; Atari_ShutdownEvents=AtariBios_ShutdownEvents;