From 8be7c2367f3cda12e1703e04bd68bd05eb23955c Mon Sep 17 00:00:00 2001 From: RobertoFresca Date: Tue, 17 May 2016 04:52:10 -0300 Subject: [PATCH] Flaming 7: Inputs WIP. 4th DIP switches bank: Button Lockout and Lockout Polarity, plus diplocations. [Roberto Fresca] --- src/mame/drivers/goldstar.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/goldstar.cpp b/src/mame/drivers/goldstar.cpp index a35e27d00cf..4279301ca63 100644 --- a/src/mame/drivers/goldstar.cpp +++ b/src/mame/drivers/goldstar.cpp @@ -7031,12 +7031,12 @@ static INPUT_PORTS_START( flaming7 ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_START("DSW4") - PORT_DIPNAME( 0x01, 0x01, "DSW4_01" ) + PORT_DIPNAME( 0x01, 0x01, "Button Lockout" ) PORT_DIPLOCATION("DSW4:1") PORT_DIPSETTING( 0x01, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x02, 0x02, "DSW4_02" ) - PORT_DIPSETTING( 0x02, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x02, 0x02, "Lockout Polarity" ) PORT_DIPLOCATION("DSW4:2") + PORT_DIPSETTING( 0x02, "Active High" ) + PORT_DIPSETTING( 0x00, "Active Low" ) PORT_DIPNAME( 0x04, 0x04, "DSW4_04" ) PORT_DIPSETTING( 0x04, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) )