From fc8d7ec1b5fae3921a813b9456b7e588218f8534 Mon Sep 17 00:00:00 2001 From: davidhay Date: Sun, 25 May 2008 18:40:12 +0000 Subject: [PATCH] fix finalgdr not accepting coins (mantis 1832) problem was double mapped input bits. Aaron, could we have a validity check for this? looks like it affects an number of drivers? maybe also a validty check for unmapped port bits? surely all ports should be either 8-bit, 16-bit, 32-bit or 64-bit, and nothing else.. unused bits should be mapped as unused... --- src/mame/drivers/vamphalf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/vamphalf.c b/src/mame/drivers/vamphalf.c index 9fff323a0b4..af6a67ecf10 100644 --- a/src/mame/drivers/vamphalf.c +++ b/src/mame/drivers/vamphalf.c @@ -493,7 +493,7 @@ static INPUT_PORTS_START( finalgdr ) PORT_BIT( 0x0020, IP_ACTIVE_LOW, IPT_UNKNOWN ) PORT_BIT( 0x0040, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_SERVICE_NO_TOGGLE( 0x0080, IP_ACTIVE_LOW ) - PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN ) + PORT_BIT( 0xff00, IP_ACTIVE_LOW, IPT_UNKNOWN ) INPUT_PORTS_END