diff options
author | 2012-09-16 05:24:30 +0000 | |
---|---|---|
committer | 2012-09-16 05:24:30 +0000 | |
commit | 1a301849034da9956b893453acce8e0f9168e150 (patch) | |
tree | a39f7a6c6b4c54b7993e58cd22ea6b6bd25f37cf /src/emu/sound/k007232.c | |
parent | 91f928d6cd774c9526c7fde7e0860aded24d08a5 (diff) |
Final round of struct/union/enum normalization.
Diffstat (limited to 'src/emu/sound/k007232.c')
-rw-r--r-- | src/emu/sound/k007232.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/k007232.c b/src/emu/sound/k007232.c index 6ef4da8711b..15aa230ceef 100644 --- a/src/emu/sound/k007232.c +++ b/src/emu/sound/k007232.c @@ -30,7 +30,7 @@ added external port callback, and functions to set the volume of the channels #define KDAC_A_PCM_MAX (2) /* Channels per chip */ -typedef struct kdacApcm +struct KDAC_A_PCM { UINT8 vol[KDAC_A_PCM_MAX][2]; /* volume for the left and right channel */ UINT32 addr[KDAC_A_PCM_MAX]; @@ -48,7 +48,7 @@ typedef struct kdacApcm sound_stream * stream; const k007232_interface *intf; UINT32 fncode[0x200]; -} KDAC_A_PCM; +}; #define BASE_SHIFT (12) |