]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - image.c
fix for double to float warning in MSVC
[xonotic/darkplaces.git] / image.c
diff --git a/image.c b/image.c
index 87c527484a6032a3b8ed2e37061e69c213f75a72..f36e975d75627102d3369bd847a72316a384a330 100644 (file)
--- a/image.c
+++ b/image.c
@@ -159,6 +159,7 @@ qbyte* LoadPCX (qbyte *f, int matchwidth, int matchheight)
                        else
                                a[x++] = dataByte;
                }
+               fin += pcx.bytes_per_line - image_width; // the number of bytes per line is always forced to an even number
                while(x < image_width)
                        a[x++] = 0;
        }
@@ -1185,3 +1186,4 @@ void Image_MipReduce(qbyte *in, qbyte *out, int *width, int *height, int destwid
                        Sys_Error("Image_MipReduce: desired size already achieved\n");
        }
 }
+