mac128: fix regression from last commit, hbl timer must fire on all scanlines now. [R. Belmont]

This commit is contained in:
arbee 2021-04-07 21:32:17 -04:00
parent ecc33227e0
commit eaa4ffcd7d

View File

@ -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();