diff options
author | 2019-10-20 15:42:13 -0700 | |
---|---|---|
committer | 2019-10-20 15:42:13 -0700 | |
commit | 9cb25537bdb00ec0468fc9a262d5bb7138fc8c1c (patch) | |
tree | 0d9155cb34b21e3e5014dd7fc87e9ad11c4e61d3 | |
parent | ac5e95423a9caad487f504bebea87961c533e884 (diff) | |
parent | 4fe08236792baf43c74d4084456c045ee68ca318 (diff) |
Merge pull request #5767 from DavidHaywood/201019
spdheat - timer setting dips were reversed, add actual timer values too (nw)
-rw-r--r-- | src/mame/drivers/spdheat.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/spdheat.cpp b/src/mame/drivers/spdheat.cpp index 8332348a98f..5894dfbdde6 100644 --- a/src/mame/drivers/spdheat.cpp +++ b/src/mame/drivers/spdheat.cpp @@ -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 ) ) |