REVIEWED: DecompressData(), memory reallocation

This commit is contained in:
raysan5
2021-02-05 13:52:01 +01:00
parent 3431d58586
commit 4407533a41
2 changed files with 6 additions and 2 deletions

View File

@@ -4800,7 +4800,7 @@ static int GenerateMipmaps(unsigned char *data, int baseWidth, int baseHeight)
unsigned char *temp = RL_REALLOC(data, size);
if (temp != NULL) data = temp;
else TRACELOG(LOG_WARNING, "TEXTURE: Failed to allocate required mipmaps memory");
else TRACELOG(LOG_WARNING, "TEXTURE: Failed to re-allocate required mipmaps memory");
width = baseWidth;
height = baseHeight;