diff options
| author | masterex1000 <[email protected]> | 2021-06-29 15:06:09 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-29 23:06:09 +0200 |
| commit | ee24d17895bad8473fa41b64b81bc14dcd776ec1 (patch) | |
| tree | c64ab3e3611d3036d1d9e57fb35cbff031455e51 /src/core.c | |
| parent | da8d76d826613ccd4070c18bab60084cc60bdc66 (diff) | |
| download | raylib-ee24d17895bad8473fa41b64b81bc14dcd776ec1.tar.gz raylib-ee24d17895bad8473fa41b64b81bc14dcd776ec1.zip | |
Fix DecompressData() pointer issue (#1856)
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
