From 7650d73c24ffdd005b9eb9bf4f001f8b42f5df53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Sun, 13 May 2012 14:49:25 +0000 Subject: [PATCH] fix coin insert problem --- src/mame/drivers/exidy440.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/exidy440.c b/src/mame/drivers/exidy440.c index cbf5768b6f1..6aa6f563724 100644 --- a/src/mame/drivers/exidy440.c +++ b/src/mame/drivers/exidy440.c @@ -255,7 +255,7 @@ Who Dunnit 1988 6809 INPUT_CHANGED_MEMBER(exidy440_state::coin_inserted) { /* 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); }