mc6845: max visible lines might not be what really is displayed, see 8088mph (nw)

This commit is contained in:
cracyc 2020-04-30 16:22:29 -05:00
parent 58e1af7123
commit 9ff0c5d083

View File

@ -1114,7 +1114,7 @@ uint32_t mc6845_device::screen_update(screen_device &screen, bitmap_rgb32 &bitma
}
/* for each row in the visible region */
for (uint16_t y = cliprect.min_y; y <= cliprect.max_y && y <= m_max_visible_y; y++)
for (uint16_t y = cliprect.min_y; y <= cliprect.max_y; y++)
{
this->draw_scanline(y, bitmap, cliprect);
}