summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author 0kmg <9137159+0kmg@users.noreply.github.com>2021-12-19 07:12:18 -0900
committer GitHub <noreply@github.com>2021-12-20 03:12:18 +1100
commit8c007481b0ecb8aebc8f748232c61948c3166f99 (patch)
treedec38edd8349dd27071502a1524b18009a133f10
parent48ec04843eb5a3a54761cac07f71f499fe25d78e (diff)
vsnes.cpp: Fixed swapped DIP switches for vsbball. (#9014)
-rw-r--r--src/mame/drivers/vsnes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vsnes.cpp b/src/mame/drivers/vsnes.cpp
index 29cd73d3d4a..b4091fab8c7 100644
--- a/src/mame/drivers/vsnes.cpp
+++ b/src/mame/drivers/vsnes.cpp
@@ -794,7 +794,7 @@ INPUT_PORTS_END
static INPUT_PORTS_START( vsbball )
PORT_INCLUDE( vsnes_dual )
- PORT_START("DSW1") /* bit 0 and 1 read from bit 3 and 4 on $4016, rest of the bits read on $4017 */
+ PORT_START("DSW0") /* bit 0 and 1 read from bit 3 and 4 on $4016, rest of the bits read on $4017 */
PORT_DIPNAME( 0x03, 0x02, "Player Defense Strength" ) PORT_DIPLOCATION("SW1:!1,!2")
PORT_DIPSETTING( 0x00, "Weak" )
PORT_DIPSETTING( 0x02, DEF_STR( Normal ) )
@@ -816,7 +816,7 @@ static INPUT_PORTS_START( vsbball )
PORT_DIPSETTING( 0x40, DEF_STR( Medium ) )
PORT_DIPSETTING( 0xc0, "Strong" )
- PORT_START("DSW0") /* bit 0 and 1 read from bit 3 and 4 on $4016, rest of the bits read on $4017 */
+ PORT_START("DSW1") /* bit 0 and 1 read from bit 3 and 4 on $4016, rest of the bits read on $4017 */
PORT_SERVICE( 0x01, IP_ACTIVE_HIGH ) PORT_DIPLOCATION("SW2:!1")
PORT_DIPNAME( 0x06, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW2:!2,!3")
PORT_DIPSETTING( 0x02, DEF_STR( 2C_1C ) )