summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-08-18 20:32:21 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-08-18 20:32:28 -0400
commit7a2f84a60cc9f07c13c94ac850809ac2c7759f2f (patch)
tree2aad36d3af2e5ddbf7225f8387c4a7d13c5d4533
parent8b623d842cc08a5739179a4c3383e1467259a36b (diff)
flstory: Fix CPU communication issue that sometimes caused sound to disappear entirely
-rw-r--r--src/mame/drivers/flstory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/flstory.cpp b/src/mame/drivers/flstory.cpp
index 3c532035d32..f14b74ac8e8 100644
--- a/src/mame/drivers/flstory.cpp
+++ b/src/mame/drivers/flstory.cpp
@@ -25,7 +25,7 @@
READ8_MEMBER(flstory_state::snd_flag_r)
{
- return (m_soundlatch2->pending_r() ? 2 : 0) | 0xfd;
+ return (m_soundlatch->pending_r() ? 0 : 1) | (m_soundlatch2->pending_r() ? 2 : 0);
}
WRITE8_MEMBER(flstory_state::nmi_disable_w)