Previous 199869 Revisions Next

r17478 Sunday 26th August, 2012 at 00:19:26 UTC by Tafoid
Fix problem with Moonwalker (segas18.c) causing coin lockout for P1, P2 coin.
[src/mame/drivers]segas18.c

trunk/src/mame/drivers/segas18.c
r17477r17478
298298         segaic16_sprites_set_flip(machine(), 0, data & 0x20);
299299// These are correct according to cgfm's docs, but mwalker and ddcrew both
300300// enable the lockout and never turn it off
301            coin_lockout_w(machine(), 1, data & 0x08);
302            coin_lockout_w(machine(), 0, data & 0x04);
301//            coin_lockout_w(machine(), 1, data & 0x08);
302//            coin_lockout_w(machine(), 0, data & 0x04);
303303         coin_counter_w(machine(), 1, data & 0x02);
304304         coin_counter_w(machine(), 0, data & 0x01);
305305         break;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team