From 00b96a4768be4560d50582617312fe1839c16463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Thu, 10 May 2012 23:10:11 +0000 Subject: [PATCH] aw, gunbustrj coin lockout is still not working --- src/mame/drivers/gunbustr.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/gunbustr.c b/src/mame/drivers/gunbustr.c index 44efdb74fb9..0b809d9116a 100644 --- a/src/mame/drivers/gunbustr.c +++ b/src/mame/drivers/gunbustr.c @@ -117,9 +117,11 @@ popmessage(t); { if (ACCESSING_BITS_24_31) { - /* game does not write a separate counter for coin 2! maybe in linked mode? */ + // coin lockout does not work in gunbustrj, perhaps this was a prototype version without proper coin handling? coin_lockout_w(machine(), 0, ~data & 0x01000000); coin_lockout_w(machine(), 1, ~data & 0x02000000); + + // game does not write a separate counter for coin 2! maybe in linked mode? coin_counter_w(machine(), 0, data & 0x04000000); coin_counter_w(machine(), 1, data & 0x04000000); m_coin_word = (data >> 16) &0xffff;