summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-09-12 08:58:04 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-09-12 08:58:04 +0000
commit69ae67f18a20a42667d497eb6eac52fe08114f0f (patch)
tree3164c9862f12d4d45091abffad9a3167eeb77e08
parentdbf2cb905a69655ea504fd298d6a209a23871fce (diff)
small fix
-rw-r--r--src/mame/drivers/mcr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/mcr.c b/src/mame/drivers/mcr.c
index 8af29e5d593..08b464cd829 100644
--- a/src/mame/drivers/mcr.c
+++ b/src/mame/drivers/mcr.c
@@ -390,7 +390,7 @@ TIMER_DEVICE_CALLBACK( dpoker_hopper_callback )
dpoker_coin_status &= ~8;
}
- coin_counter_w(timer.machine(), 0, dpoker_output_34 & 8);
+ coin_counter_w(timer.machine(), 3, dpoker_output_34 & 8);
}
TIMER_DEVICE_CALLBACK( dpoker_coin_in_callback )
@@ -461,6 +461,8 @@ WRITE8_MEMBER(mcr_state::dpoker_p34_w)
m_dpoker_hopper_timer->adjust(attotime::from_msec(500));
// other bits: unused?
+
+ dpoker_output_34 = data;
}