From eaa4ffcd7dee20ce69f675c15c33c4b00584d32c Mon Sep 17 00:00:00 2001 From: arbee Date: Wed, 7 Apr 2021 21:32:17 -0400 Subject: mac128: fix regression from last commit, hbl timer must fire on all scanlines now. [R. Belmont] --- src/mame/drivers/mac128.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/mac128.cpp b/src/mame/drivers/mac128.cpp index 67fa24453bd..3b80fbefa09 100644 --- a/src/mame/drivers/mac128.cpp +++ b/src/mame/drivers/mac128.cpp @@ -489,9 +489,10 @@ TIMER_CALLBACK_MEMBER(mac128_state::mac_scanline) if (scanline >= 28) { m_via->write_pb6(1); - m_hblank_timer->adjust(m_screen->time_until_pos(scanline, MAC_H_TOTAL)); } + m_hblank_timer->adjust(m_screen->time_until_pos(scanline, MAC_H_TOTAL)); + if ((!(scanline % 10)) && (!m_macadb)) { mouse_callback(); -- cgit v1.2.3