Merge pull request #5767 from DavidHaywood/201019

spdheat - timer setting dips were reversed, add actual timer values too (nw)
This commit is contained in:
Phil Bennett 2019-10-20 15:42:13 -07:00 committed by GitHub
commit 9cb25537bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -537,11 +537,11 @@ static INPUT_PORTS_START( spdheat )
PORT_DIPSETTING( 0x0002, "2nd Race" )
PORT_DIPSETTING( 0x0001, "3rd Race" )
PORT_DIPSETTING( 0x0000, "4th Race" )
PORT_DIPNAME( 0x000C, 0x0004, "Timer Setting" ) PORT_DIPLOCATION("DSWC:3,4")
PORT_DIPSETTING( 0x0000, DEF_STR( Easy ) )
PORT_DIPSETTING( 0x0004, DEF_STR( Normal ) )
PORT_DIPSETTING( 0x0008, DEF_STR( Hard ) )
PORT_DIPSETTING( 0x000C, DEF_STR( Hardest ) )
PORT_DIPNAME( 0x000C, 0x0008, "Timer Setting" ) PORT_DIPLOCATION("DSWC:3,4")
PORT_DIPSETTING( 0x000C, DEF_STR( Easy ) ) // 210 on initial race
PORT_DIPSETTING( 0x0008, DEF_STR( Normal ) ) // 200
PORT_DIPSETTING( 0x0004, DEF_STR( Hard ) ) // 190
PORT_DIPSETTING( 0x0000, DEF_STR( Hardest ) ) // 180
PORT_DIPNAME( 0x0010, 0x0000, "Coin Display" ) PORT_DIPLOCATION("DSWC:5")
PORT_DIPSETTING( 0x0010, DEF_STR( Off ) )
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )