From 68d6e910e8f8c3d8d0cd6dd2b4239ba174cc376b Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Thu, 1 Dec 2011 17:04:04 +0000 Subject: [PATCH] Since there is no z80 driving the sound for this Yie Ar Kung Fu board (on Track and Field hardware), it makes sense the clock would come from elsewhere. MASTER_CLOCK, which when set up like the yiear parent at the same speed, gives correctly pitched audio. (nw) --- src/mame/drivers/trackfld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/trackfld.c b/src/mame/drivers/trackfld.c index 1299f769344..9d74064ab8d 100644 --- a/src/mame/drivers/trackfld.c +++ b/src/mame/drivers/trackfld.c @@ -1004,7 +1004,7 @@ static MACHINE_CONFIG_START( yieartf, trackfld_state ) MCFG_SOUND_ADD("dac", DAC, 0) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.80) - MCFG_SOUND_ADD("snsnd", SN76496, SOUND_CLOCK/8) + MCFG_SOUND_ADD("snsnd", SN76496, MASTER_CLOCK/6/2) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) MCFG_SOUND_ADD("vlm", VLM5030, VLM_CLOCK)