summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/apple2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/apple2.cpp')
-rw-r--r--src/mame/video/apple2.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/video/apple2.cpp b/src/mame/video/apple2.cpp
index 824bf5548c9..b829090063d 100644
--- a/src/mame/video/apple2.cpp
+++ b/src/mame/video/apple2.cpp
@@ -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)
{