From 99657d0cbf7cdec3592e3c30d9a5ac839d08d62c Mon Sep 17 00:00:00 2001 From: hap Date: Wed, 6 Apr 2022 21:25:02 +0200 Subject: timetrv: fix difficulty dipswitch typo --- src/devices/cpu/sm510/sm530op.cpp | 2 +- src/mame/drivers/timetrv.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/sm510/sm530op.cpp b/src/devices/cpu/sm510/sm530op.cpp index a8a55d89d7b..ced05b2dc53 100644 --- a/src/devices/cpu/sm510/sm530op.cpp +++ b/src/devices/cpu/sm510/sm530op.cpp @@ -104,7 +104,7 @@ void sm530_device::op_ats() void sm530_device::op_atf() { - // ATS: output ACC to F + // ATF: output ACC to F m_write_f(m_acc); } diff --git a/src/mame/drivers/timetrv.cpp b/src/mame/drivers/timetrv.cpp index 9a6ef43c49a..5c0552bbae5 100644 --- a/src/mame/drivers/timetrv.cpp +++ b/src/mame/drivers/timetrv.cpp @@ -280,7 +280,7 @@ static INPUT_PORTS_START( timetrv ) PORT_DIPSETTING( 0x0c, DEF_STR( Medium ) ) PORT_DIPSETTING( 0x08, DEF_STR( Easy ) ) PORT_DIPSETTING( 0x04, DEF_STR( Difficult ) ) - PORT_DIPSETTING( 0x0c, DEF_STR( Very_Difficult ) ) + PORT_DIPSETTING( 0x00, DEF_STR( Very_Difficult ) ) PORT_DIPNAME( 0x10, 0x10, "LaserDisc Player Protocol" ) PORT_DIPLOCATION("SW3:5") PORT_DIPSETTING( 0x10, "Pioneer LDV-4200" ) PORT_DIPSETTING( 0x00, "Sony LDP-1450" ) -- cgit v1.2.3