mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
apple2gs: don't render 8-bit modes past their bounds [R. Belmont]
This commit is contained in:
parent
25ed5bb25d
commit
7571f8c3b8
@ -1596,6 +1596,11 @@ uint32_t a2_video_device::screen_update_GS_8bit(screen_device &screen, bitmap_in
|
||||
{
|
||||
bool old_page2 = m_page2;
|
||||
|
||||
if (cliprect.bottom() > 191)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// don't display page2 if 80store is set (we just saved the previous value, don't worry)
|
||||
if (m_80store)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user