mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
flstory: Fix CPU communication issue that sometimes caused sound to disappear entirely
This commit is contained in:
parent
8b623d842c
commit
7a2f84a60c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user