diff options
author | 2023-11-02 14:05:21 +0100 | |
---|---|---|
committer | 2023-11-03 00:05:21 +1100 | |
commit | ee2525e4941eaef8f0e10559e7b401527dd67e4f (patch) | |
tree | 8f4ceac686718e5d03b764fd464c2fe765217415 | |
parent | 59d3924944657d69b84801ba51cce97e303f3b8e (diff) |
capcom/gunsmoke.cpp: Swapped coin inputs and corresponding DIP switched to match the manual. (#11695)
-rw-r--r-- | src/mame/capcom/gunsmoke.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/capcom/gunsmoke.cpp b/src/mame/capcom/gunsmoke.cpp index f4d99eecd5e..0e484a636bf 100644 --- a/src/mame/capcom/gunsmoke.cpp +++ b/src/mame/capcom/gunsmoke.cpp @@ -405,8 +405,8 @@ static INPUT_PORTS_START( gunsmoke ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_CUSTOM ) // VBLANK PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED ) - PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_COIN2 ) - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_COIN1 ) + PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_COIN1 ) + PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_START("P1") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY @@ -451,7 +451,7 @@ static INPUT_PORTS_START( gunsmoke ) PORT_SERVICE( 0x80, IP_ACTIVE_LOW ) // Also "debug mode" PORT_START("DSW2") - PORT_DIPNAME( 0x07, 0x07, DEF_STR( Coin_B ) ) + PORT_DIPNAME( 0x07, 0x07, DEF_STR( Coin_A ) ) PORT_DIPSETTING( 0x00, DEF_STR( 4C_1C ) ) PORT_DIPSETTING( 0x01, DEF_STR( 3C_1C ) ) PORT_DIPSETTING( 0x02, DEF_STR( 2C_1C ) ) @@ -460,7 +460,7 @@ static INPUT_PORTS_START( gunsmoke ) PORT_DIPSETTING( 0x05, DEF_STR( 1C_3C ) ) PORT_DIPSETTING( 0x04, DEF_STR( 1C_4C ) ) PORT_DIPSETTING( 0x03, DEF_STR( 1C_6C ) ) - PORT_DIPNAME( 0x38, 0x38, DEF_STR( Coin_A ) ) + PORT_DIPNAME( 0x38, 0x38, DEF_STR( Coin_B ) ) PORT_DIPSETTING( 0x00, DEF_STR( 4C_1C ) ) PORT_DIPSETTING( 0x08, DEF_STR( 3C_1C ) ) PORT_DIPSETTING( 0x10, DEF_STR( 2C_1C ) ) |