From a7a0564ff00007b2bfb38a1872368dce92c07d50 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Mon, 20 Nov 2017 05:01:18 -0500 Subject: Fix for 06766: spacefb and clones: DAC sounds not working 100% (nw) --- src/mame/audio/spacefb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/audio/spacefb.cpp b/src/mame/audio/spacefb.cpp index 0d6456bd040..00607b17649 100644 --- a/src/mame/audio/spacefb.cpp +++ b/src/mame/audio/spacefb.cpp @@ -24,7 +24,7 @@ READ8_MEMBER(spacefb_state::audio_p2_r) READ_LINE_MEMBER(spacefb_state::audio_t0_r) { - return BIT(m_sound_latch, 6); + return BIT(m_sound_latch, 5); } -- cgit v1.2.3