X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fimage.c;h=5331a8865c956ebdee5229c3326e2316bed4c2f1;hb=a8b2caa1d373c84c1b3fc2f615370c2a319051ca;hp=09a75fcee078a7eb6628042246a6acd67ecef6be;hpb=0918c3eb2f6219a8cc72aa85bd9c4889788dd474;p=rocksndiamonds.git diff --git a/src/image.c b/src/image.c index 09a75fce..5331a886 100644 --- a/src/image.c +++ b/src/image.c @@ -11,6 +11,8 @@ * image.c * ***********************************************************/ +#ifndef TARGET_SDL + #include "image.h" #include "pcx.h" #include "misc.h" @@ -514,7 +516,7 @@ int Read_PCX_to_Pixmap(Display *display, Window window, GC gc, char *filename, /* read the graphic file in PCX format to image structure */ if ((image = Read_PCX_to_Image(filename)) == NULL) - return PCX_FileInvalid; + return errno_pcx; #if DEBUG_TIMING printf("%s:\n", filename); @@ -548,7 +550,8 @@ int Read_PCX_to_Pixmap(Display *display, Window window, GC gc, char *filename, *pixmap = ximageinfo->pixmap; *pixmap_mask = ximageinfo->pixmap_mask; - return(PCX_Success); + return PCX_Success; } #endif /* !MSDOS */ +#endif /* !TARGET_SDL */