Procházet zdrojové kódy

MSVC: Fix void pointer arithmetic error

GNU C allows it as a compiler extension, but MSVC doesn't.
pull/433/head
Ahmad Fatoum před 7 roky
rodič
revize
a2edc9d641
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: C3EAC3DE9321D59B
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/textures.c

+ 1
- 1
src/textures.c Zobrazit soubor

@ -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 = p">(unsigned char *)image->data + GetPixelDataSize(image->width, image->height, image->format);
mipWidth = image->width/2;
mipHeight = image->height/2;

Načítá se…
Zrušit
Uložit