Procházet zdrojové kódy

Changed `if` to `else if`. (#1122)

pull/1126/head
SasLuca před 5 roky
odevzdal GitHub
rodič
revize
680f9d5772
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
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

@ -3118,7 +3118,7 @@ static Image LoadDDS(const char *fileName)
}
}
}
if (ddsHeader.ddspf.flags == 0x40 && ddsHeader.ddspf.rgbBitCount == 24) // DDS_RGB, no compressed
else if (ddsHeader.ddspf.flags == 0x40 && ddsHeader.ddspf.rgbBitCount == 24) // DDS_RGB, no compressed
{
// NOTE: not sure if this case exists...
image.data = (unsigned char *)RL_MALLOC(image.width*image.height*3*sizeof(unsigned char));

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