summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/snk6502.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/snk6502.c')
-rw-r--r--src/mame/audio/snk6502.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/snk6502.c b/src/mame/audio/snk6502.c
index b4829d443ed..0e32bf2a3fe 100644
--- a/src/mame/audio/snk6502.c
+++ b/src/mame/audio/snk6502.c
@@ -29,7 +29,7 @@
#define FRAC_ONE (1 << FRAC_BITS)
#define FRAC_MASK (FRAC_ONE - 1)
-typedef struct tone
+struct TONE
{
int mute;
int offset;
@@ -39,7 +39,7 @@ typedef struct tone
INT32 sample_step;
INT32 sample_cur;
INT16 form[16];
-} TONE;
+};
struct snk6502_sound_state
{