From a2edc9d64191d9b9253ee7faa5f80cd742f769b2 Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Thu, 18 Jan 2018 13:19:19 +0100 Subject: [PATCH] MSVC: Fix void pointer arithmetic error GNU C allows it as a compiler extension, but MSVC doesn't. --- src/textures.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textures.c b/src/textures.c index f53adb731..50f7e63a6 100644 --- a/src/textures.c +++ b/src/textures.c @@ -1114,7 +1114,7 @@ void ImageMipmaps(Image *image) else TraceLog(LOG_WARNING, "Mipmaps required memory could not be allocated"); // Pointer to allocated memory point where store next mipmap level data - unsigned char *nextmip = image->data + GetPixelDataSize(image->width, image->height, image->format); + unsigned char *nextmip = (unsigned char *)image->data + GetPixelDataSize(image->width, image->height, image->format); mipWidth = image->width/2; mipHeight = image->height/2;