Fix a 64bit problem with libpng.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@688 dfc29bdd-3216-0410-991c-e03cc46cb475
master
hybrid 2007-06-04 23:19:40 +00:00
parent 855908957d
commit e48685ea32
1 changed files with 2 additions and 2 deletions

View File

@ -1093,8 +1093,8 @@
* want to have unsigned int for png_uint_32 instead of unsigned long.
*/
typedef unsigned long png_uint_32;
typedef long png_int_32;
typedef unsigned int png_uint_32;
typedef int png_int_32;
typedef unsigned short png_uint_16;
typedef short png_int_16;
typedef unsigned char png_byte;