summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/gaelco.c
diff options
context:
space:
mode:
author Derrick Renaud <derrickr@mamedev.org>2008-08-09 05:28:19 +0000
committer Derrick Renaud <derrickr@mamedev.org>2008-08-09 05:28:19 +0000
commit629498ef38622d9abeaf587db4472cdee57f6020 (patch)
tree5fad7b63065189ffb49f4e3a8006008198757ed9 /src/emu/sound/gaelco.c
parentb14904ef682bb0c90eae4f17806243283b5cea2a (diff)
more sound core structure/renaming updates.
You may have to do a clean compile, or delete the affected driver object files. struct C140interface to c140_interface struct cem3394_interface to cem3394_interface struct ES5503interface to es5503_interface struct ES5505interface to es5505_interface struct ES5506interface to es5506_interface struct ssg_callbacks to ssg_callbacks struct gaelcosnd_interface to gaelcosnd_interface struct ics2115_interface to ics2115_interface I'll stop until my posted question about chip names and upper case is answered.
Diffstat (limited to 'src/emu/sound/gaelco.c')
-rw-r--r--src/emu/sound/gaelco.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/gaelco.c b/src/emu/sound/gaelco.c
index 9bf4c22ce54..9bbe2992207 100644
--- a/src/emu/sound/gaelco.c
+++ b/src/emu/sound/gaelco.c
@@ -246,7 +246,7 @@ WRITE16_HANDLER( gaelcosnd_w )
static void *gaelcosnd_start(sound_type sndtype, const char *tag, int sndindex, int clock, const void *config)
{
int j, vol;
- const struct gaelcosnd_interface *intf = config;
+ const gaelcosnd_interface *intf = config;
struct GAELCOSND *info;
info = auto_malloc(sizeof(*info));