From 382b86aa49bb53233fa2eb673fc4d25d6e677cd9 Mon Sep 17 00:00:00 2001 From: neSneSgB Date: Sun, 8 May 2022 17:23:14 -0700 Subject: 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. --- src/mame/drivers/vegas.cpp | 4 ++-- 1 file 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" ) -- cgit v1.2.3