r381 - trunk
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat Nov 24 12:28:23 EST 2007
Author: icculus
Date: 2007-11-24 12:28:23 -0500 (Sat, 24 Nov 2007)
New Revision: 381
Modified:
trunk/stb_image.c
Log:
Fixed 64-bit issue in jpg/png decoders.
Modified: trunk/stb_image.c
===================================================================
--- trunk/stb_image.c 2007-11-24 09:09:52 UTC (rev 380)
+++ trunk/stb_image.c 2007-11-24 17:28:23 UTC (rev 381)
@@ -659,7 +659,7 @@
#if __MOJOSETUP__ // moved here from elsewhere for #ifdef safety.
static uint8 *idata, *expanded, *out;
-static unsigned long code_buffer; // jpeg entropy-coded buffer
+static uint32 code_buffer; // jpeg entropy-coded buffer
#endif
enum
More information about the mojosetup-commits
mailing list