aboutsummaryrefslogtreecommitdiff
path: root/common/scummsys.h
diff options
context:
space:
mode:
authorMax Horn2009-11-23 22:27:52 +0000
committerMax Horn2009-11-23 22:27:52 +0000
commit016f343ca753077eb68b1fced19604aae785e755 (patch)
treedc33fd4943d694dd0523a687641f027bac221d33 /common/scummsys.h
parentecbd0a0d539c7a0119b0cadef79527960ac22225 (diff)
downloadscummvm-rg350-016f343ca753077eb68b1fced19604aae785e755.tar.gz
scummvm-rg350-016f343ca753077eb68b1fced19604aae785e755.tar.bz2
scummvm-rg350-016f343ca753077eb68b1fced19604aae785e755.zip
Remove SCUMMVM_USE_LONG_INT
svn-id: r46103
Diffstat (limited to 'common/scummsys.h')
-rw-r--r--common/scummsys.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/common/scummsys.h b/common/scummsys.h
index 428d9c3763..00d76916aa 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -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