Fix DecompressData() pointer issue (#1856)

This commit is contained in:
masterex1000 2021-06-29 15:06:09 -06:00 committed by GitHub
parent da8d76d826
commit ee24d17895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3055,7 +3055,7 @@ unsigned char *DecompressData(unsigned char *compData, int compDataLength, int *
*dataLength = length;
TraceLog(LOG_INFO, "SYSTEM: Decompress data: Comp. size: %i -> Original size: %i", compDataLength, dataLength);
TraceLog(LOG_INFO, "SYSTEM: Decompress data: Comp. size: %i -> Original size: %i", compDataLength, *dataLength);
#endif
return data;