]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - ft2_defs.h
fix compile error
[xonotic/darkplaces.git] / ft2_defs.h
index fd15998d28f791f745f7453ad82343d7c8b80ba9..c8d38c6e98b7a589457e8a986bfcc3a4c28885f4 100644 (file)
@@ -6,10 +6,11 @@
 
 #ifdef _MSC_VER
 typedef __int32 FT_Int32;
-typedef __uint32 FT_UInt32;
+typedef unsigned __int32 FT_UInt32;
 #else
+# include <stdint.h>
 typedef int32_t FT_Int32;
-typedef u_int32_t FT_UInt32;
+typedef uint32_t FT_UInt32;
 #endif
 
 typedef int FT_Error;