mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
mc6845: max visible lines might not be what really is displayed, see 8088mph (nw)
This commit is contained in:
parent
58e1af7123
commit
9ff0c5d083
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user