summaryrefslogtreecommitdiff
path: root/psxdev/xadecode.h
diff options
context:
space:
mode:
authorPixel <Pixel>2002-06-23 15:37:45 +0000
committerPixel <Pixel>2002-06-23 15:37:45 +0000
commitb3c377e647b5eb14c2ed0ff27db4ac14a3fd4e2d (patch)
tree7905392c81d466a6e5c0fc89ca118a044c26cb52 /psxdev/xadecode.h
parent7514019f385767caf7e68ae281d3a4befb7b4e8f (diff)
Attribute ((packed)) fix...
Diffstat (limited to 'psxdev/xadecode.h')
-rw-r--r--psxdev/xadecode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/psxdev/xadecode.h b/psxdev/xadecode.h
index 264012c..025d36a 100644
--- a/psxdev/xadecode.h
+++ b/psxdev/xadecode.h
@@ -3,6 +3,8 @@
slightly modified by dbalster
*/
+#include "generic.h"
+
#ifndef XADECODE_H
#define XADECODE_H
@@ -50,7 +52,7 @@ typedef char SoundGroup[128];
typedef struct SoundSector {
char sectorFiller[8];
SoundGroup SoundGroups[kNumOfSGs];
-} __attribute__((packed)) SoundSector;
+} PACKED SoundSector;
typedef unsigned long DWORD;
typedef unsigned short WORD;