flstory: Fix CPU communication issue that sometimes caused sound to disappear entirely

This commit is contained in:
AJR 2017-08-18 20:32:21 -04:00
parent 8b623d842c
commit 7a2f84a60c

View File

@ -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)