From 3850c0c83b5d76d12a61b67c9f30f2095385758b Mon Sep 17 00:00:00 2001 From: Lord-Nightmare Date: Sat, 9 May 2015 21:42:10 -0400 Subject: [PATCH] zaxxon.c: Use SN76489A for sound as shown on congo bongo schematic [Lord Nightmare[ --- src/mame/drivers/zaxxon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/zaxxon.c b/src/mame/drivers/zaxxon.c index 09cd1c3fc3c..9429196fb95 100644 --- a/src/mame/drivers/zaxxon.c +++ b/src/mame/drivers/zaxxon.c @@ -997,10 +997,10 @@ static MACHINE_CONFIG_DERIVED( congo, root ) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD("sn1", SN76496, SOUND_CLOCK) + MCFG_SOUND_ADD("sn1", SN76489A, SOUND_CLOCK) // schematic shows sn76489A MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) - MCFG_SOUND_ADD("sn2", SN76496, SOUND_CLOCK/4) + MCFG_SOUND_ADD("sn2", SN76489A, SOUND_CLOCK/4) // schematic shows sn76489A MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) MCFG_FRAGMENT_ADD(congo_samples)