summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-01-08 12:34:09 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-01-08 12:34:09 +0000
commitf2e639761745c7a05a39f17e45f2a4811fc6f71c (patch)
tree327803dbf968ed85827f2c63d70c6811a6184c6d
parent33436fb783065d7b5d8c127da1ef67715c4492c8 (diff)
(unknown device is just a ram chip)
-rw-r--r--src/mame/drivers/wiz.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/wiz.c b/src/mame/drivers/wiz.c
index b9d397fa98e..038d9a7b6c3 100644
--- a/src/mame/drivers/wiz.c
+++ b/src/mame/drivers/wiz.c
@@ -80,7 +80,6 @@ TODO:
Wiz:
- Possible sprite/char priority issues.
-- There is unknown device (Sony CXK5808-55) on the board.
- And the supplier of the screenshot says there still may be some wrong
colors. Just before the break on Level 2 there is a cresent moon,
the background should probably be black.
@@ -718,7 +717,7 @@ static INTERRUPT_GEN( wiz_sound_interrupt )
{
wiz_state *state = device->machine().driver_data<wiz_state>();
- if(state->m_sound_nmi_mask)
+ if(state->m_sound_nmi_mask & 1)
device_set_input_line(device, INPUT_LINE_NMI, PULSE_LINE);
}