pack _parallax to be on the safe side

svn-id: r10234
This commit is contained in:
Oliver Kiehl 2003-09-13 17:36:39 +00:00
parent 5aa69da8ef
commit 51703e1014

View File

@ -1231,6 +1231,10 @@ typedef int BOOL;
// ---------------------
//
#if !defined(__GNUC__)
#pragma START_PACK_STRUCTS
#endif
typedef struct
{
uint16 buttons;
@ -1241,7 +1245,7 @@ typedef struct
uint16 w;
uint16 h;
uint32 offset[2]; // 2 is arbitrary
} _parallax;
} GCC_PACK _parallax;
// The _spriteInfo structure is used to tell the driver96 code what attributes
// are linked to a sprite for drawing. These include position, scaling and
@ -1367,6 +1371,11 @@ typedef struct {
uint32 dwAvailVirtual;
} GCC_PACK SVM_MEMORYSTATUS;
#if !defined(__GNUC__)
#pragma END_PACK_STRUCTS
#endif
//
// Function Prototypes
// -------------------