summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-05-05 14:57:34 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-05-05 14:57:34 +0000
commit9f07ffa54843d7acc0a1daa2b6bcce2a5192b018 (patch)
tree15e0e9b69c7bd52c7e3cfa0662b39e1cba293365 /src
parent07dc96844951e471f0fdd0d14bd0d155f5eaab4b (diff)
Fixed williams.c regression (no whatsnew)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/williams.c2
-rw-r--r--src/mame/includes/williams.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/williams.c b/src/mame/drivers/williams.c
index cad9bdd3ebf..acad9ad3d86 100644
--- a/src/mame/drivers/williams.c
+++ b/src/mame/drivers/williams.c
@@ -1693,7 +1693,7 @@ MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( joust2, williams2 )
/* basic machine hardware */
- MCFG_WILLIAMS_CVSD_SOUND_ADD("cvsd")
+ MCFG_WILLIAMS_CVSD_SOUND_ADD("cvsd_sound")
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
MCFG_MACHINE_START(joust2)
diff --git a/src/mame/includes/williams.h b/src/mame/includes/williams.h
index 3e8dbe8db6e..2c54a8b87ca 100644
--- a/src/mame/includes/williams.h
+++ b/src/mame/includes/williams.h
@@ -13,7 +13,7 @@ class williams_state : public driver_device
public:
williams_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_cvsd_sound(*this, "cvsd"),
+ m_cvsd_sound(*this, "cvsd_sound"),
m_nvram(*this, "nvram") ,
m_videoram(*this, "videoram"),
m_blaster_palette_0(*this, "blaster_pal0"),