summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormasterex1000 <[email protected]>2021-06-29 15:06:09 -0600
committerGitHub <[email protected]>2021-06-29 23:06:09 +0200
commitee24d17895bad8473fa41b64b81bc14dcd776ec1 (patch)
treec64ab3e3611d3036d1d9e57fb35cbff031455e51 /src
parentda8d76d826613ccd4070c18bab60084cc60bdc66 (diff)
downloadraylib-ee24d17895bad8473fa41b64b81bc14dcd776ec1.tar.gz
raylib-ee24d17895bad8473fa41b64b81bc14dcd776ec1.zip
Fix DecompressData() pointer issue (#1856)
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 360b5b08..82b718ab 100644
--- a/src/core.c
+++ b/src/core.c
@@ -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;