tag regression

This commit is contained in:
Michaël Banaan Ananas 2012-05-25 04:03:08 +00:00
parent 736ca889cd
commit 7a9aefbb60
2 changed files with 5 additions and 4 deletions

View File

@ -1693,7 +1693,7 @@ MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( joust2, williams2 )
/* basic machine hardware */
MCFG_WILLIAMS_CVSD_SOUND_ADD("cvsd_sound")
MCFG_WILLIAMS_CVSD_SOUND_ADD("cvsd")
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
MCFG_MACHINE_START(joust2)

View File

@ -13,12 +13,13 @@ 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_sound"),
m_cvsd_sound(*this, "cvsd"),
m_nvram(*this, "nvram"),
m_videoram(*this, "videoram"),
m_blaster_palette_0(*this, "blaster_pal0"),
m_blaster_scanline_control(*this, "blaster_scan"),
m_williams2_tileram(*this, "williams2_tile"){ }
m_williams2_tileram(*this, "williams2_tile")
{ }
optional_device<williams_cvsd_sound_device> m_cvsd_sound;