From ee2525e4941eaef8f0e10559e7b401527dd67e4f Mon Sep 17 00:00:00 2001 From: JOTEGO Date: Thu, 2 Nov 2023 14:05:21 +0100 Subject: capcom/gunsmoke.cpp: Swapped coin inputs and corresponding DIP switched to match the manual. (#11695) --- src/mame/capcom/gunsmoke.cpp | 8 ++++---- 1 file 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 ) ) -- cgit v1.2.3