[Scummvm-cvs-logs] CVS: scummvm/sword2/driver animation.h,1.13,1.14

Max Horn fingolfin at users.sourceforge.net
Fri Jan 30 12:53:51 CET 2004


Update of /cvsroot/scummvm/scummvm/sword2/driver
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31653/sword2/driver

Modified Files:
	animation.h 
Log Message:
fix whitespaces (we should eventually try to remove this code duplication again, folks. maybe add a 'video' global module or so...)

Index: animation.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword2/driver/animation.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- animation.h	18 Jan 2004 21:09:57 -0000	1.13
+++ animation.h	30 Jan 2004 20:47:21 -0000	1.14
@@ -26,13 +26,13 @@
 // #define USE_MPEG2_0_3_1
 
 #ifdef _MSC_VER
-typedef signed char int8_t;
+typedef int8 int8_t;
 typedef signed short int16_t;
-typedef signed int int32_t;
+typedef int32 int32_t;
 
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t; 
+typedef uint8 uint8_t;
+typedef uint16 uint16_t;
+typedef uint32 uint32_t; 
 #else
 #include <inttypes.h>
 #endif
@@ -104,9 +104,9 @@
 		byte pal[4 * 256];
 	} palettes[50];
 #else
-        static NewGuiColor lookup2[BITDEPTH * BITDEPTH * 256];
-        NewGuiColor *overlay;
-        static bool lookupInit;
+	static NewGuiColor lookup2[BITDEPTH * BITDEPTH * 256];
+	NewGuiColor *overlay;
+	static bool lookupInit;
 
 #endif
 





More information about the Scummvm-git-logs mailing list