diff options
Diffstat (limited to 'gfx.h')
| -rw-r--r-- | gfx.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| @@ -82,11 +82,19 @@ struct BlastObject {		/* BlastObjects to draw */  	uint16 mode;  }; +#if !defined(__GNUC__) +	#pragma START_PACK_STRUCTS +#endif +  struct BompHeader {			/* Bomp header */  	uint16 unk;  	uint16 width,height;  } GCC_PACK; +#if !defined(__GNUC__) +	#pragma END_PACK_STRUCTS +#endif +  struct BompDrawData {		/* Bomp graphics data */  	byte *out;  	int outwidth, outheight; | 
