aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorNicola Mettifogo2007-02-12 21:14:34 +0000
committerNicola Mettifogo2007-02-12 21:14:34 +0000
commitf644986f87f7e42b7b9494d99e09a1aec6c02832 (patch)
treec603e2f7c95230e870e72dbf470d2caf0c57987d /engines/parallaction
parent852803d6e0f3a29f04692a09feabe60a89ff4356 (diff)
downloadscummvm-rg350-f644986f87f7e42b7b9494d99e09a1aec6c02832.tar.gz
scummvm-rg350-f644986f87f7e42b7b9494d99e09a1aec6c02832.tar.bz2
scummvm-rg350-f644986f87f7e42b7b9494d99e09a1aec6c02832.zip
changed structure packing to use pack-start.h and pack-end.h
svn-id: r25537
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/graphics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/graphics.h b/engines/parallaction/graphics.h
index e409f8a714..ee82484086 100644
--- a/engines/parallaction/graphics.h
+++ b/engines/parallaction/graphics.h
@@ -39,7 +39,7 @@ namespace Parallaction {
#define PALETTE_COLORS 32
#define PALETTE_SIZE PALETTE_COLORS*3
-#pragma pack(push, 1)
+#include "common/pack-start.h" // START STRUCT PACKING
struct PaletteFxRange {
@@ -51,7 +51,7 @@ struct PaletteFxRange {
};
-#pragma pack(pop)
+#include "common/pack-end.h" // END STRUCT PACKING
extern byte _palette[];