X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fx11.c;h=fd1d8b80c7f44b15e5af4f56c6e65af627edaeb3;hb=335f4db8f7a8bea9b06eeea911b6d1e1d4de4623;hp=6adfc11d4787855eb2c9e47923c33065f5a538a2;hpb=11db3a75c0ab5b9e8c98b4cdbb17080f9dc3d1a5;p=rocksndiamonds.git diff --git a/src/libgame/x11.c b/src/libgame/x11.c index 6adfc11d..fd1d8b80 100644 --- a/src/libgame/x11.c +++ b/src/libgame/x11.c @@ -234,6 +234,7 @@ static DrawWindow *X11InitWindow() Bitmap *X11LoadImage(char *filename) { Bitmap *new_bitmap = CreateBitmapStruct(); + char *error = "Read_PCX_to_Pixmap(): %s '%s'"; int pcx_err; #if defined(PLATFORM_MSDOS) @@ -247,24 +248,39 @@ Bitmap *X11LoadImage(char *filename) case PCX_Success: break; case PCX_OpenFailed: - Error(ERR_EXIT, "cannot open PCX file '%s'", filename); + SetError(error, "cannot open PCX file", filename); + return NULL; case PCX_ReadFailed: - Error(ERR_EXIT, "cannot read PCX file '%s'", filename); + SetError(error, "cannot read PCX file", filename); + return NULL; case PCX_FileInvalid: - Error(ERR_EXIT, "invalid PCX file '%s'", filename); + SetError(error, "invalid PCX file", filename); + return NULL; case PCX_NoMemory: - Error(ERR_EXIT, "not enough memory for PCX file '%s'", filename); + SetError(error, "not enough memory for PCX file", filename); + return NULL; case PCX_ColorFailed: - Error(ERR_EXIT, "cannot get colors for PCX file '%s'", filename); + SetError(error, "cannot get colors for PCX file", filename); + return NULL; + case PCX_OtherError: + /* this should already have called SetError() */ + return NULL; default: - break; + SetError(error, "unknown error reading PCX file", filename); + return NULL; } if (!new_bitmap->drawable) - Error(ERR_EXIT, "cannot get graphics for '%s'", filename); + { + SetError("X11LoadImage(): cannot get graphics for '%s'", filename); + return NULL; + } if (!new_bitmap->clip_mask) - Error(ERR_EXIT, "cannot get clipmask for '%s'", filename); + { + SetError("X11LoadImage(): cannot get clipmask for '%s'", filename); + return NULL; + } /* set GraphicContext inheritated from Window */ new_bitmap->gc = window->gc;