summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-09-16 12:26:37 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-09-16 12:26:37 -0400
commitdfcf8538f7912505850b27090ffb50f5be3979ba (patch)
treef0bcfb83cb104d8b002f560eb02385db4925d3f8
parent7cc9c68d6d7a821b9acb0af00c081ba3e0338441 (diff)
facit4440: Silly mistake (nw)
-rw-r--r--src/mame/drivers/facit4440.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/facit4440.cpp b/src/mame/drivers/facit4440.cpp
index c5cb37d6819..03bd9221e7e 100644
--- a/src/mame/drivers/facit4440.cpp
+++ b/src/mame/drivers/facit4440.cpp
@@ -137,7 +137,7 @@ u8 facit4440_state::misc_status_r()
WRITE_LINE_MEMBER(facit4440_state::vsync_w)
{
- if (BIT(m_control_latch[0], 5))
+ if (state && BIT(m_control_latch[0], 5))
m_maincpu->set_input_line(INPUT_LINE_NMI, ASSERT_LINE);
}