From 6e292c13e372670c67c99084a5e82757e2c57a5e Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Mon, 19 Dec 2022 06:57:24 +1100 Subject: machine/micomxe1a.cpp: Fixed a dumb editing error with delays. --- src/devices/machine/micomxe1a.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/machine/micomxe1a.cpp b/src/devices/machine/micomxe1a.cpp index dbe608385ed..4b6b4d5c4da 100644 --- a/src/devices/machine/micomxe1a.cpp +++ b/src/devices/machine/micomxe1a.cpp @@ -236,7 +236,7 @@ WRITE_LINE_MEMBER(micom_xe_1a_device::req_w) m_data[5] = BIT(buttons, 8, 8) & ((BIT(buttons, 6, 2) << 2) | 0xf3); // takes a while to respond - m_output_timer->adjust(attotime::from_nsec(50), 0); + m_output_timer->adjust(attotime::from_nsec(50'000), 0); } } else @@ -306,7 +306,7 @@ TIMER_CALLBACK_MEMBER(micom_xe_1a_device::step_output) BIT(m_out, 5)); if ((std::size(m_data) * 2) > step) { - m_output_timer->adjust(attotime::from_nsec(20'000), param + 1); + m_output_timer->adjust(attotime::from_nsec(10'000), param + 1); } } else -- cgit v1.2.3