summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2008-06-26 23:06:28 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2008-06-26 23:06:28 +0000
commit9ba06ea183e1d95f24e0588157103d33b7210d7e (patch)
tree62e488b13606ed3db921ec284fe93a1275994244
parent08308f1f366abd9095aa7b0dd3c435171e201624 (diff)
Fix input port read during init on most (Super) System 22 games.
-rw-r--r--src/mame/drivers/namcos22.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/namcos22.c b/src/mame/drivers/namcos22.c
index a25f326a6d8..e879a1a9eca 100644
--- a/src/mame/drivers/namcos22.c
+++ b/src/mame/drivers/namcos22.c
@@ -5077,7 +5077,7 @@ static DRIVER_INIT( ridgeraj )
install_c74_speedup(machine);
- old_coin_state = input_port_read_indexed(machine, 1) & 0x1200;
+ old_coin_state = 0;
credits1 = credits2 = 0;
}
@@ -5087,7 +5087,7 @@ static DRIVER_INIT( ridger2j )
install_c74_speedup(machine);
- old_coin_state = input_port_read_indexed(machine, 1) & 0x1200;
+ old_coin_state = 0;
credits1 = credits2 = 0;
}
@@ -5097,7 +5097,7 @@ static DRIVER_INIT( acedrvr )
install_c74_speedup(machine);
- old_coin_state = input_port_read_indexed(machine, 1) & 0x1200;
+ old_coin_state = 0;
credits1 = credits2 = 0;
}
@@ -5107,7 +5107,7 @@ static DRIVER_INIT( victlap )
install_c74_speedup(machine);
- old_coin_state = input_port_read_indexed(machine, 1) & 0x1200;
+ old_coin_state = 0;
credits1 = credits2 = 0;
}
@@ -5117,7 +5117,7 @@ static DRIVER_INIT( raveracw )
install_c74_speedup(machine);
- old_coin_state = input_port_read_indexed(machine, 1) & 0x1200;
+ old_coin_state = 0;
credits1 = credits2 = 0;
}
@@ -5134,7 +5134,7 @@ static DRIVER_INIT( cybrcomm )
install_c74_speedup(machine);
- old_coin_state = input_port_read_indexed(machine, 1) & 0x1200;
+ old_coin_state = 0;
credits1 = credits2 = 0;
}