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.
This commit is contained in:
neSneSgB 2022-05-08 17:23:14 -07:00 committed by GitHub
parent ec326fa8b7
commit 382b86aa49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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" )