Fix problem with Moonwalker (segas18.c) causing coin lockout for P1, P2 coin.

This commit is contained in:
Scott Stone 2012-08-26 00:19:26 +00:00
parent 390362ac6e
commit a7277fe7d2

View File

@ -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;