[Scummvm-cvs-logs] CVS: scummvm/common scummsys.h,1.69,1.70

Max Horn fingolfin at users.sourceforge.net
Fri Oct 14 03:24:19 CEST 2005


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27027

Modified Files:
	scummsys.h 
Log Message:
cleanup (really would like to unify all those typedef's eventually; maybe we can use inttypes.h  on some systems?)

Index: scummsys.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/scummsys.h,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- scummsys.h	13 Oct 2005 12:44:26 -0000	1.69
+++ scummsys.h	14 Oct 2005 10:20:42 -0000	1.70
@@ -135,8 +135,8 @@
 	typedef unsigned char byte;
 	typedef unsigned char uint8;
 	typedef unsigned short uint16;
-	typedef unsigned int uint;
 	typedef unsigned int uint32;
+	typedef unsigned int uint;
 	typedef signed char int8;
 	typedef signed short int16;
 	typedef signed int int32;
@@ -260,10 +260,11 @@
 	typedef unsigned short uint16;
 	typedef unsigned int uint32;
 	typedef unsigned int uint;
-	typedef unsigned long uint64;
 	typedef signed char int8;
 	typedef signed short int16;
 	typedef signed int int32;
+
+	typedef unsigned long uint64;
 	typedef signed long int64;
 
 	#define START_PACK_STRUCTS pack (push, 1)
@@ -299,11 +300,12 @@
 	typedef unsigned short uint16;
 	typedef unsigned int uint32;
 	typedef unsigned int uint;
-	typedef unsigned long uint64;
 	typedef signed char int8;
 	typedef signed short int16;
 	typedef signed int int32;
 
+	typedef unsigned long uint64;
+
 	#define START_PACK_STRUCTS pack (push, 1)
 	#define END_PACK_STRUCTS         pack(pop)
 





More information about the Scummvm-git-logs mailing list