diff options
author | Max Horn | 2006-07-22 17:28:48 +0000 |
---|---|---|
committer | Max Horn | 2006-07-22 17:28:48 +0000 |
commit | 2859b647026af1a927d1a74100f125bbc0f77db3 (patch) | |
tree | e842c9e2e67296f5bbc48645ba49b469edb7bd22 /engines/lure | |
parent | 1ffd49604357ed6fd63e133369a89e3b57711ae2 (diff) | |
download | scummvm-rg350-2859b647026af1a927d1a74100f125bbc0f77db3.tar.gz scummvm-rg350-2859b647026af1a927d1a74100f125bbc0f77db3.tar.bz2 scummvm-rg350-2859b647026af1a927d1a74100f125bbc0f77db3.zip |
Fix struct packing issues (macros are not resolve in #pragma params, at least for GCC)
svn-id: r23569
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/res_struct.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/engines/lure/res_struct.h b/engines/lure/res_struct.h index 931ec15a34..65047afc59 100644 --- a/engines/lure/res_struct.h +++ b/engines/lure/res_struct.h @@ -37,9 +37,7 @@ extern const char *actionList[]; /* */ /*-------------------------------------------------------------------------*/ -#if defined(START_PACK_STRUCTS) -#pragma START_PACK_STRUCTS -#endif +#include <common/pack-start.h> // START STRUCT PACKING struct VersionStructure { uint16 id; @@ -215,9 +213,7 @@ struct RoomExitIndexedHotspotResource { uint16 hotspotId; }; -#if defined(END_PACK_STRUCTS) -#pragma END_PACK_STRUCTS -#endif +#include <common/pack-end.h> // END STRUCT PACKING // Class template for a derived list that destroys the contained // object when the record containing it is destroyed. It's not |