aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/scummsys.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/common/scummsys.h b/common/scummsys.h
index f00210e58b..32299c6820 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -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)