Mercurial > sdl-ios-xcode
diff src/video/photon/SDL_phyuv.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/photon/SDL_phyuv.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/video/photon/SDL_phyuv.c Tue Feb 07 06:59:48 2006 +0000 @@ -141,7 +141,7 @@ overlay->hwdata->ischromakey=0; do { - memset(&overlay->hwdata->caps, 0x00, sizeof(PgScalerCaps_t)); + SDL_memset(&overlay->hwdata->caps, 0x00, sizeof(PgScalerCaps_t)); overlay->hwdata->caps.size = sizeof(PgScalerCaps_t); rtncode = PgGetScalerCapabilities(overlay->hwdata->channel, i, &overlay->hwdata->caps); if (rtncode==0) @@ -498,9 +498,9 @@ overlay->hwdata->CurrentFrameData = NULL; - free(overlay->hwdata->FrameData0); - free(overlay->hwdata->FrameData1); + SDL_free(overlay->hwdata->FrameData0); + SDL_free(overlay->hwdata->FrameData1); overlay->hwdata->FrameData0 = NULL; overlay->hwdata->FrameData1 = NULL; - free(overlay->hwdata); + SDL_free(overlay->hwdata); }