summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/es5506.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-09-15 21:47:30 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-09-15 21:47:30 +0000
commitab97dc30efdd5cc1abf8c65b8ce29af364219167 (patch)
tree5ab46b3c21f6e0e4173a79a4151e019b3f2dc17e /src/emu/sound/es5506.c
parentd1da89cc7817315f05269205a3f56d36ebba170b (diff)
First pass at modernizing struct definitions.
Diffstat (limited to 'src/emu/sound/es5506.c')
-rw-r--r--src/emu/sound/es5506.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/sound/es5506.c b/src/emu/sound/es5506.c
index a332684269d..9a2c1b9a6aa 100644
--- a/src/emu/sound/es5506.c
+++ b/src/emu/sound/es5506.c
@@ -135,8 +135,7 @@ Ensoniq OTIS - ES5505 Ensoniq OTTO -
***********************************************************************************************/
/* struct describing a single playing voice */
-typedef struct _es5506_voice es5506_voice;
-struct _es5506_voice
+struct es5506_voice
{
/* external state */
UINT32 control; /* control register */
@@ -167,8 +166,7 @@ struct _es5506_voice
UINT32 accum_mask;
};
-typedef struct _es5506_state es5506_state;
-struct _es5506_state
+struct es5506_state
{
sound_stream *stream; /* which stream are we using */
int sample_rate; /* current sample rate */