From d3cb3d4540bfed2f5a1eba114d42dfab88159fb9 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 23 Jun 2017 09:09:56 -0400 Subject: lsasquad.cpp: Switch PSG type to YM2149 for original Taito sets (nw) --- src/mame/drivers/lsasquad.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/lsasquad.cpp b/src/mame/drivers/lsasquad.cpp index 6495270af3f..c69f9ba446c 100644 --- a/src/mame/drivers/lsasquad.cpp +++ b/src/mame/drivers/lsasquad.cpp @@ -595,7 +595,7 @@ static MACHINE_CONFIG_START( lsasquad ) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("aysnd", AY8910, MASTER_CLOCK / 8) + MCFG_SOUND_ADD("aysnd", YM2149, MASTER_CLOCK / 8) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.12) MCFG_SOUND_ADD("ymsnd", YM2203, MASTER_CLOCK / 8) @@ -614,6 +614,9 @@ static MACHINE_CONFIG_DERIVED( storming, lsasquad ) MCFG_CPU_PROGRAM_MAP(storming_map) MCFG_DEVICE_REMOVE("bmcu") + + MCFG_SOUND_REPLACE("aysnd", AY8910, MASTER_CLOCK / 8) // AY-3-8910A + MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.12) MACHINE_CONFIG_END static MACHINE_CONFIG_START( daikaiju ) @@ -651,7 +654,7 @@ static MACHINE_CONFIG_START( daikaiju ) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("aysnd", AY8910, MASTER_CLOCK / 8) + MCFG_SOUND_ADD("aysnd", YM2149, MASTER_CLOCK / 8) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.12) MCFG_SOUND_ADD("ymsnd", YM2203, MASTER_CLOCK / 8) -- cgit v1.2.3