Mercurial > sdl-ios-xcode
changeset 920:bbefeed8134d
Use SDL_SetError instead of fprintf
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Thu, 05 Aug 2004 19:34:44 +0000 |
parents | 4b1dd7691f05 |
children | 6126849e59a6 |
files | src/video/gem/SDL_gemvideo.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/gem/SDL_gemvideo.c Tue Aug 03 15:40:18 2004 +0000 +++ b/src/video/gem/SDL_gemvideo.c Thu Aug 05 19:34:44 2004 +0000 @@ -605,7 +605,7 @@ if (use_shadow1) { GEM_buffer1 = Atari_SysMalloc(screensize, MX_PREFTTRAM); if (GEM_buffer1==NULL) { - fprintf(stderr,"Unable to allocate shadow buffer\n"); + SDL_SetError("Unable to allocate shadow buffer"); return NULL; } memset(GEM_buffer1, 0, screensize); @@ -617,7 +617,7 @@ if (use_shadow2) { GEM_buffer2 = Atari_SysMalloc(screensize, MX_PREFTTRAM); if (GEM_buffer2==NULL) { - fprintf(stderr,"Unable to allocate shadow buffer\n"); + SDL_SetError("Unable to allocate shadow buffer"); return NULL; } memset(GEM_buffer2, 0, screensize); @@ -671,7 +671,7 @@ if (!wind_calc(0, GEM_win_type, posx, posy, width, height, &x2, &y2, &w2, &h2)) { GEM_FreeBuffers(this); - fprintf(stderr,"Can not calculate window attributes\n"); + SDL_SetError("Can not calculate window attributes\n"); return NULL; } @@ -679,7 +679,7 @@ GEM_handle=wind_create(GEM_win_type, x2, y2, w2, h2); if (GEM_handle<0) { GEM_FreeBuffers(this); - fprintf(stderr,"Can not create window\n"); + SDL_SetError("Can not create window\n"); return NULL; }