[Scummvm-cvs-logs] CVS: scummvm/sword1 animation.h,1.1,1.2

Pawel Kolodziejski aquadran at users.sourceforge.net
Sat Jan 17 23:22:01 CET 2004


Update of /cvsroot/scummvm/scummvm/sword1
In directory sc8-pr-cvs1:/tmp/cvs-serv1257

Modified Files:
	animation.h 
Log Message:
fix compilation

Index: animation.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword1/animation.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- animation.h	18 Jan 2004 05:52:04 -0000	1.1
+++ animation.h	18 Jan 2004 07:21:10 -0000	1.2
@@ -25,7 +25,15 @@
 // Uncomment this if you are using libmpeg2 0.3.1.
 // #define USE_MPEG2_0_3_1
 
-#ifndef _MSC_VER
+#ifdef _MSC_VER
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed int int32_t;
+
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t; 
+#else
 #include <inttypes.h>
 #endif
 





More information about the Scummvm-git-logs mailing list