mirror of
https://github.com/holub/mame
synced 2025-06-08 22:03:55 +03:00
mac128: fix regression from last commit, hbl timer must fire on all scanlines now. [R. Belmont]
This commit is contained in:
parent
ecc33227e0
commit
eaa4ffcd7d
@ -489,9 +489,10 @@ TIMER_CALLBACK_MEMBER(mac128_state::mac_scanline)
|
|||||||
if (scanline >= 28)
|
if (scanline >= 28)
|
||||||
{
|
{
|
||||||
m_via->write_pb6(1);
|
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))
|
if ((!(scanline % 10)) && (!m_macadb))
|
||||||
{
|
{
|
||||||
mouse_callback();
|
mouse_callback();
|
||||||
|
Loading…
Reference in New Issue
Block a user