[Scummvm-cvs-logs] SF.net SVN: scummvm:[46103] scummvm/trunk/common/scummsys.h

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Mon Nov 23 23:27:53 CET 2009


Revision: 46103
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46103&view=rev
Author:   fingolfin
Date:     2009-11-23 22:27:52 +0000 (Mon, 23 Nov 2009)

Log Message:
-----------
Remove SCUMMVM_USE_LONG_INT

Modified Paths:
--------------
    scummvm/trunk/common/scummsys.h

Modified: scummvm/trunk/common/scummsys.h
===================================================================
--- scummvm/trunk/common/scummsys.h	2009-11-23 15:31:58 UTC (rev 46102)
+++ scummvm/trunk/common/scummsys.h	2009-11-23 22:27:52 UTC (rev 46103)
@@ -121,9 +121,6 @@
 //    - Define this on a big endian target
 // SCUMM_NEED_ALIGNMENT
 //    - Define this if your system has problems reading e.g. an int32 from an odd address
-// SCUMMVM_USE_LONG_INT
-//    - Define this if your port needs to use 'long' for the int32 datatype
-//      (i.e. an integer with exactly 32 bits).
 // SCUMMVM_DONT_DEFINE_TYPES
 //    - Define this if you need to provide your own typedefs, e.g. because your
 //      system headers conflict with our typenames, or because you have odd
@@ -398,24 +395,14 @@
 // Typedef our system types unless SCUMMVM_DONT_DEFINE_TYPES is set.
 //
 #ifndef SCUMMVM_DONT_DEFINE_TYPES
-
 	typedef unsigned char byte;
-
 	typedef unsigned char uint8;
 	typedef signed char int8;
-
 	typedef unsigned short uint16;
 	typedef signed short int16;
-
-	#ifdef SCUMMVM_USE_LONG_INT
-	typedef unsigned long uint32;
-	typedef signed long int32;
-	typedef unsigned long uint;
-	#else
 	typedef unsigned int uint32;
 	typedef signed int int32;
 	typedef unsigned int uint;
-	#endif
 #endif
 
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list