summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
author neSneSgB <ticontro@mailbox.org>2022-05-08 17:23:14 -0700
committer GitHub <noreply@github.com>2022-05-08 18:23:14 -0600
commit382b86aa49bb53233fa2eb673fc4d25d6e677cd9 (patch)
treee5c4d82a207e0aea27531d6fdd1b2e0c0fe84663 /src
parentec326fa8b7e5ad8ae9c2db7f529fa43553e3a29b (diff)
vegas.cpp: Fix reversed DIP switch names for sf2049te, sf2049se (#9687)
The disk-based test was booting to the EPROM-based test and vice versa. For both games, the DIP switch meanings in the EPROM-based test and in the disk-based test are not the same; they contradict each other.
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/vegas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vegas.cpp b/src/mame/drivers/vegas.cpp
index 92c834e9d59..95d3f512194 100644
--- a/src/mame/drivers/vegas.cpp
+++ b/src/mame/drivers/vegas.cpp
@@ -1774,8 +1774,8 @@ static INPUT_PORTS_START( sf2049se )
PORT_DIPSETTING( 0x0000, DEF_STR(Yes))
PORT_DIPNAME( 0x00c0, 0x00c0, "Test Mode" )
PORT_DIPSETTING( 0x00c0, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x0080, "Disk-based Test" )
- PORT_DIPSETTING( 0x0040, "EPROM-based Test" )
+ PORT_DIPSETTING( 0x0080, "EPROM-based Test" )
+ PORT_DIPSETTING( 0x0040, "Disk-based Test" )
PORT_DIPSETTING( 0x0000, "Interactive Diagnostics" )
PORT_DIPNAME( 0x0001, 0x0001, "PM Dump" )
PORT_DIPSETTING( 0x0001, "Watchdog resets only" )