summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-04-29 23:48:20 -0400
committer AJR <ajrhacker@users.noreply.github.com>2021-04-29 23:48:20 -0400
commitb9ad42595e6f5276616a0355f38438f2dbbf07cb (patch)
tree025278211d190a6a6da431273e94351a7127b3d6
parentaee6e30f3ef8eb96e715b603332647b98cd01e99 (diff)
timelimt.cpp: Fix MT 7960
-rw-r--r--src/mame/drivers/timelimt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/timelimt.cpp b/src/mame/drivers/timelimt.cpp
index 942bcb502a7..56434c4318a 100644
--- a/src/mame/drivers/timelimt.cpp
+++ b/src/mame/drivers/timelimt.cpp
@@ -240,9 +240,9 @@ void timelimt_state::timelimt(machine_config &config)
ls259_device &mainlatch(LS259(config, "mainlatch")); // IC15
mainlatch.q_out_cb<0>().set(FUNC(timelimt_state::nmi_enable_w));
mainlatch.q_out_cb<2>().set(FUNC(timelimt_state::coin_lockout_w));
- mainlatch.q_out_cb<3>().set_inputline(m_audiocpu, INPUT_LINE_RESET).invert();
- mainlatch.q_out_cb<6>().set_nop(); // probably flip screen
- mainlatch.q_out_cb<7>().set_nop(); // probably flip screen
+ mainlatch.q_out_cb<3>().set_nop(); // PSG mute control on thepit not used properly in timelimt (only set at startup, reset at game over)
+ mainlatch.q_out_cb<6>().set_nop(); // probably horizontal flip, as on thepit
+ mainlatch.q_out_cb<7>().set_nop(); // probably vertical flip, as on thepit
WATCHDOG_TIMER(config, "watchdog");