From 4fe08236792baf43c74d4084456c045ee68ca318 Mon Sep 17 00:00:00 2001 From: DavidHaywood <28625134+DavidHaywood@users.noreply.github.com> Date: Sun, 20 Oct 2019 23:37:58 +0100 Subject: [PATCH] use macros, leave initial time on first race in comment as it increases later (nw) --- src/mame/drivers/spdheat.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/spdheat.cpp b/src/mame/drivers/spdheat.cpp index cacf8ab8c77..a6e9dfcfa6c 100644 --- a/src/mame/drivers/spdheat.cpp +++ b/src/mame/drivers/spdheat.cpp @@ -538,10 +538,10 @@ static INPUT_PORTS_START( spdheat ) PORT_DIPSETTING( 0x0001, "3rd Race" ) PORT_DIPSETTING( 0x0000, "4th Race" ) PORT_DIPNAME( 0x000C, 0x0008, "Timer Setting" ) PORT_DIPLOCATION("DSWC:3,4") - PORT_DIPSETTING( 0x000C, "Easy (210)" ) - PORT_DIPSETTING( 0x0008, "Normal (200)" ) - PORT_DIPSETTING( 0x0004, "Hard (190)" ) - PORT_DIPSETTING( 0x0000, "Hardest (180)" ) + 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 ) )