From f2e639761745c7a05a39f17e45f2a4811fc6f71c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Sun, 8 Jan 2012 12:34:09 +0000 Subject: [PATCH] (unknown device is just a ram chip) --- src/mame/drivers/wiz.c | 3 +-- 1 file changed, 1 insertion(+), 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(); - if(state->m_sound_nmi_mask) + if(state->m_sound_nmi_mask & 1) device_set_input_line(device, INPUT_LINE_NMI, PULSE_LINE); }