summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2017-10-04 00:16:53 +0200
committer GitHub <noreply@github.com>2017-10-04 00:16:53 +0200
commit81b32c39826046249b5c6621890327b4d921dd4a (patch)
treef3668a303c0fc287690adae2deb6d4158719c124
parent48ac925bc2c01bfbe18a325fb8bfc8b23d04907c (diff)
Fix inverted Single / Dual DSW for Metal Black (nw)
-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 d341e24fbef..9c9155ca81f 100644
--- a/src/mame/drivers/taito_f2.cpp
+++ b/src/mame/drivers/taito_f2.cpp
@@ -2022,9 +2022,9 @@ static INPUT_PORTS_START( metalb )
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_3_BUTTONS_START( 1 )