summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/gaelco.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-01-18 18:22:46 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-01-18 18:22:46 +0000
commit68a0e2c86aa75b8f2aa273421a04625987e64ba2 (patch)
tree40098bbfc8e80166d730eb82cb333baab884fa3d /src/emu/sound/gaelco.c
parent0335419d51f78de7963fc879ae508a6e14cdbdc3 (diff)
Removed redundant config parameter from SND_START.
Diffstat (limited to 'src/emu/sound/gaelco.c')
-rw-r--r--src/emu/sound/gaelco.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/gaelco.c b/src/emu/sound/gaelco.c
index 41cf7f0d67e..96d72785689 100644
--- a/src/emu/sound/gaelco.c
+++ b/src/emu/sound/gaelco.c
@@ -242,10 +242,10 @@ WRITE16_HANDLER( gaelcosnd_w )
CG-1V/GAE1 Init
============================================================================*/
-static void *gaelcosnd_start(sound_type sndtype, const device_config *device, int clock, const void *config)
+static void *gaelcosnd_start(sound_type sndtype, const device_config *device, int clock)
{
int j, vol;
- const gaelcosnd_interface *intf = config;
+ const gaelcosnd_interface *intf = device->static_config;
struct GAELCOSND *info;
info = auto_malloc(sizeof(*info));
@@ -277,12 +277,12 @@ static void *gaelcosnd_start(sound_type sndtype, const device_config *device, in
static SND_START( gaelco_gae1 )
{
- return gaelcosnd_start(SOUND_GAELCO_GAE1, device, clock, config);
+ return gaelcosnd_start(SOUND_GAELCO_GAE1, device, clock);
}
static SND_START( gaelco_cg1v )
{
- return gaelcosnd_start(SOUND_GAELCO_CG1V, device, clock, config);
+ return gaelcosnd_start(SOUND_GAELCO_CG1V, device, clock);
}