Mercurial > sdl-ios-xcode
diff src/video/riscos/SDL_riscosmouse.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/riscos/SDL_riscosmouse.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/video/riscos/SDL_riscosmouse.c Tue Feb 07 06:59:48 2006 +0000 @@ -60,8 +60,8 @@ void RISCOS_FreeWMCursor(_THIS, WMcursor *cursor) { - free(cursor->data); - free(cursor); + SDL_free(cursor->data); + SDL_free(cursor); } WMcursor *RISCOS_CreateWMCursor(_THIS, @@ -80,17 +80,17 @@ } /* Allocate the cursor */ - cursor = (WMcursor *)malloc(sizeof(*cursor)); + cursor = (WMcursor *)SDL_malloc(sizeof(*cursor)); if ( cursor == NULL ) { SDL_SetError("Out of memory"); return(NULL); } /* Note: SDL says width must be a multiple of 8 */ - cursor_data = malloc(w/4 * h); + cursor_data = SDL_malloc(w/4 * h); if (cursor_data == NULL) { - free(cursor); + SDL_free(cursor); SDL_SetError("Out of memory"); return(NULL); }