mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
aw, gunbustrj coin lockout is still not working
This commit is contained in:
parent
621fa9a92f
commit
00b96a4768
@ -117,9 +117,11 @@ popmessage(t);
|
|||||||
{
|
{
|
||||||
if (ACCESSING_BITS_24_31)
|
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(), 0, ~data & 0x01000000);
|
||||||
coin_lockout_w(machine(), 1, ~data & 0x02000000);
|
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(), 0, data & 0x04000000);
|
||||||
coin_counter_w(machine(), 1, data & 0x04000000);
|
coin_counter_w(machine(), 1, data & 0x04000000);
|
||||||
m_coin_word = (data >> 16) &0xffff;
|
m_coin_word = (data >> 16) &0xffff;
|
||||||
|
Loading…
Reference in New Issue
Block a user