Corrected issue with variable name

This commit is contained in:
Ray 2020-02-27 13:56:27 +01:00
parent 5ff0776235
commit acfa967e89

View file

@ -261,9 +261,9 @@ Image LoadImage(const char *fileName)
image.mipmaps = 1; image.mipmaps = 1;
if (imgBpp == 1) image.format = UNCOMPRESSED_R32; if (comp == 1) image.format = UNCOMPRESSED_R32;
else if (imgBpp == 3) image.format = UNCOMPRESSED_R32G32B32; else if (comp == 3) image.format = UNCOMPRESSED_R32G32B32;
else if (imgBpp == 4) image.format = UNCOMPRESSED_R32G32B32A32; else if (comp == 4) image.format = UNCOMPRESSED_R32G32B32A32;
else else
{ {
TRACELOG(LOG_WARNING, "[%s] HDR Image fileformat not supported", fileName); TRACELOG(LOG_WARNING, "[%s] HDR Image fileformat not supported", fileName);