diff options
author | 2012-09-16 03:06:55 +0000 | |
---|---|---|
committer | 2012-09-16 03:06:55 +0000 | |
commit | 91f928d6cd774c9526c7fde7e0860aded24d08a5 (patch) | |
tree | 7f41fdb9da8c9de744c08094820eb47c6b21576b /src/emu/sound/multipcm.c | |
parent | 8d1de4e030e6af94e1bb6c1cbeedb8ca8a18d5b1 (diff) |
Enum and union normalization.
Diffstat (limited to 'src/emu/sound/multipcm.c')
-rw-r--r-- | src/emu/sound/multipcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/multipcm.c b/src/emu/sound/multipcm.c index eae6fd797bf..1f86058e85b 100644 --- a/src/emu/sound/multipcm.c +++ b/src/emu/sound/multipcm.c @@ -48,7 +48,7 @@ struct _Sample unsigned char AM; }; -typedef enum {ATTACK,DECAY1,DECAY2,RELEASE} _STATE; +enum _STATE {ATTACK,DECAY1,DECAY2,RELEASE}; ALLOW_SAVE_TYPE(_STATE); // allow save_item on a non-fundamental type struct _EG { |