fix coin insert problem

This commit is contained in:
Michaël Banaan Ananas 2012-05-13 14:49:25 +00:00
parent 524acc9809
commit 7650d73c24

View File

@ -255,7 +255,7 @@ Who Dunnit 1988 6809
INPUT_CHANGED_MEMBER(exidy440_state::coin_inserted) INPUT_CHANGED_MEMBER(exidy440_state::coin_inserted)
{ {
/* if we got a coin, set the IRQ on the main CPU */ /* if we got a coin, set the IRQ on the main CPU */
if (newval == 0) if (newval)
cputag_set_input_line(machine(), "maincpu", 0, ASSERT_LINE); cputag_set_input_line(machine(), "maincpu", 0, ASSERT_LINE);
} }