summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-07-09 03:58:37 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-07-09 03:58:37 -0400
commit2acac0a88d7194a21429f9d2c781c7ce3f1ef98b (patch)
treeed57a45bff8a99bb93df9ff4d06d4f66de52e28f
parentd124aa7cb8cecc81ad81a0ac94e2f1e6ec4aefa9 (diff)
gunfront: Correct "Upright Controls" DIP switch - OFF is Single, and should not be the default
-rw-r--r--src/mame/drivers/taito_f2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/taito_f2.cpp b/src/mame/drivers/taito_f2.cpp
index 8e71965d2e9..d341e24fbef 100644
--- a/src/mame/drivers/taito_f2.cpp
+++ b/src/mame/drivers/taito_f2.cpp
@@ -1976,9 +1976,9 @@ static INPUT_PORTS_START( gunfront )
PORT_DIPNAME( 0x40, 0x40, DEF_STR( Allow_Continue ) ) PORT_DIPLOCATION("SW2:7")
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x40, DEF_STR( On ) )
- PORT_DIPNAME( 0x80, 0x00, "Upright Controls" ) PORT_DIPLOCATION("SW2:8") /* ie single or two players at once */
- PORT_DIPSETTING( 0x80, DEF_STR( Single ) )
- PORT_DIPSETTING( 0x00, DEF_STR( Dual ) )
+ PORT_DIPNAME( 0x80, 0x80, "Upright Controls" ) PORT_DIPLOCATION("SW2:8") /* ie single or two players at once */
+ PORT_DIPSETTING( 0x00, DEF_STR( Single ) )
+ PORT_DIPSETTING( 0x80, DEF_STR( Dual ) )
PORT_START("IN0")
TAITO_JOY_UDLR_2_BUTTONS_START( 1 )