From a7277fe7d26291f500258170c53cba445007b8e0 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Sun, 26 Aug 2012 00:19:26 +0000 Subject: [PATCH] Fix problem with Moonwalker (segas18.c) causing coin lockout for P1, P2 coin. --- src/mame/drivers/segas18.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/segas18.c b/src/mame/drivers/segas18.c index af970df6fc3..fbedc477afd 100644 --- a/src/mame/drivers/segas18.c +++ b/src/mame/drivers/segas18.c @@ -298,8 +298,8 @@ WRITE16_MEMBER( segas18_state::io_chip_w ) segaic16_sprites_set_flip(machine(), 0, data & 0x20); // These are correct according to cgfm's docs, but mwalker and ddcrew both // enable the lockout and never turn it off - coin_lockout_w(machine(), 1, data & 0x08); - coin_lockout_w(machine(), 0, data & 0x04); +// coin_lockout_w(machine(), 1, data & 0x08); +// coin_lockout_w(machine(), 0, data & 0x04); coin_counter_w(machine(), 1, data & 0x02); coin_counter_w(machine(), 0, data & 0x01); break;