summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2011-12-01 17:04:04 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2011-12-01 17:04:04 +0000
commit68d6e910e8f8c3d8d0cd6dd2b4239ba174cc376b (patch)
tree3b6ca0d01fe67c872b20d3052140ef265304beee
parent4d3b8323e0085dfd039811fd7cfc22310ee7696e (diff)
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)
-rw-r--r--src/mame/drivers/trackfld.c2
1 files changed, 1 insertions, 1 deletions
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)