diff options
| author | 2021-04-07 21:32:17 -0400 | |
|---|---|---|
| committer | 2021-04-07 21:32:17 -0400 | |
| commit | eaa4ffcd7dee20ce69f675c15c33c4b00584d32c (patch) | |
| tree | a39b92d5d1c01d0e86e06594644119ccbdbbd4b2 /src | |
| parent | ecc33227e00aaa1f9db14696a1f437e50e152916 (diff) | |
mac128: fix regression from last commit, hbl timer must fire on all scanlines now. [R. Belmont]
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/mac128.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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(); |
