summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/djmain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/djmain.c')
-rw-r--r--src/mame/drivers/djmain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/djmain.c b/src/mame/drivers/djmain.c
index 762e086ae80..4d3952b19e0 100644
--- a/src/mame/drivers/djmain.c
+++ b/src/mame/drivers/djmain.c
@@ -196,7 +196,7 @@ WRITE32_MEMBER(djmain_state::v_ctrl_w)
mem_mask >>= 16;
COMBINE_DATA(&m_v_ctrl);
- if (m_pending_vb_int && !(!(m_v_ctrl & 0x8000))) // #define DISABLE_VB_INT (!(state->m_v_ctrl & 0x8000))
+ if (m_pending_vb_int && !(!(m_v_ctrl & 0x8000))) // #define DISABLE_VB_INT (!(state->m_v_ctrl & 0x8000))
{
m_pending_vb_int = 0;
cputag_set_input_line(machine(), "maincpu", M68K_IRQ_4, HOLD_LINE);