summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-08-05 22:13:21 -0400
committer arbee <rb6502@users.noreply.github.com>2021-08-05 22:13:21 -0400
commita6ac620bf2e7d4ae3c8abe481f6199ef42664498 (patch)
tree0c8e153413ae8c2c10c0f310a28772389eb80e77
parent63e44c5537f3354fc39a6992f98ee6a7cf841d43 (diff)
apple2gs: Fix 80-column page 2 display, fixes Applecorn. [Peter Ferrie, R. Belmont]
-rw-r--r--src/mame/video/apple2.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/video/apple2.cpp b/src/mame/video/apple2.cpp
index 92590c9ae2d..91babf1809a 100644
--- a/src/mame/video/apple2.cpp
+++ b/src/mame/video/apple2.cpp
@@ -1716,8 +1716,7 @@ void a2_video_device::text_updateGS(screen_device &screen, bitmap_ind16 &bitmap,
{
uint8_t const *const aux_page = m_aux_ptr ? m_aux_ptr : m_ram_ptr;
- uint32_t const start_address = m_80col ? 0x400 : m_page2 ? 0x800
- : 0x400;
+ uint32_t const start_address = m_page2 ? 0x800 : 0x400;
beginrow = (std::max)(beginrow, cliprect.top() - (cliprect.top() % 8));
endrow = (std::min)(endrow, cliprect.bottom() - (cliprect.bottom() % 8) + 7);