From 902b6e715ae096123b90d174311b0b0655e5d8fb Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Sat, 23 Apr 2011 16:29:12 +0000 Subject: [PATCH] Fixed dsw activeness (needed by Kozure Ookami, presumably as a debug feature) --- src/mame/drivers/armedf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mame/drivers/armedf.c b/src/mame/drivers/armedf.c index 068ff389c14..fb5cdb093c3 100644 --- a/src/mame/drivers/armedf.c +++ b/src/mame/drivers/armedf.c @@ -530,6 +530,7 @@ static INPUT_PORTS_START( armedf ) PORT_DIPSETTING( 0x80, DEF_STR( Normal ) ) PORT_DIPSETTING( 0x40, DEF_STR( Hard ) ) PORT_DIPSETTING( 0x00, DEF_STR( Hardest ) ) + PORT_BIT( 0xff00, IP_ACTIVE_LOW, IPT_UNKNOWN ) PORT_START("DSW2") PORT_DIPNAME( 0x03, 0x03, DEF_STR( Coin_A ) ) PORT_DIPLOCATION("SW2:1,2") @@ -551,6 +552,7 @@ static INPUT_PORTS_START( armedf ) PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_DIPUNUSED_DIPLOC( 0x80, 0x80, "SW2:8" ) + PORT_BIT( 0xff00, IP_ACTIVE_LOW, IPT_UNKNOWN ) INPUT_PORTS_END static INPUT_PORTS_START( legion )