aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorLars Persson2006-04-05 14:10:13 +0000
committerLars Persson2006-04-05 14:10:13 +0000
commitc409c600964913cfdfb95128d49cfbecac4cc06b (patch)
tree6c1c45dbdea5a4e16657d29765dbab9430c4bddc /common
parent48c46eed6b573e7f131795dccc990eafb42d86a2 (diff)
downloadscummvm-rg350-c409c600964913cfdfb95128d49cfbecac4cc06b.tar.gz
scummvm-rg350-c409c600964913cfdfb95128d49cfbecac4cc06b.tar.bz2
scummvm-rg350-c409c600964913cfdfb95128d49cfbecac4cc06b.zip
Added comments to Symbians data types.
svn-id: r21631
Diffstat (limited to 'common')
-rw-r--r--common/scummsys.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/common/scummsys.h b/common/scummsys.h
index 7052b25c0e..33db07978c 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -299,13 +299,18 @@
#define SCUMM_LITTLE_ENDIAN
#define SCUMM_NEED_ALIGNMENT
- #define SCUMMVM_DONT_DEFINE_TYPES
#define START_PACK_STRUCTS pack(push, 1)
#define END_PACK_STRUCTS pack(pop)
#define SMALL_SCREEN_DEVICE
+ // Enable Symbians own datatypes
+ // This is done for two reasons
+ // a) uint is already defined by Symbians libc component
+ // b) Symbian is using its "own" datatyping, and the Scummvm port
+ // should follow this to ensure the best compability possible.
+ #define SCUMMVM_DONT_DEFINE_TYPES
typedef unsigned char byte;
typedef unsigned char uint8;