From d46491c5d00be456c6f823ebb1e5d443af073138 Mon Sep 17 00:00:00 2001 From: tomcw Date: Mon, 4 Dec 2017 20:43:42 +0000 Subject: [PATCH] VideoMode: 80STORE should only mask, not clear PAGE2 - and this is handled by underlying NTSC video code (#516) --- source/Video.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/source/Video.cpp b/source/Video.cpp index 6516192b..9bb02fd6 100644 --- a/source/Video.cpp +++ b/source/Video.cpp @@ -722,14 +722,7 @@ BYTE VideoSetMode (WORD, WORD address, BYTE write, BYTE, ULONG uExecutedCycles) case 0x5F: if (!IS_APPLE2) g_uVideoMode &= ~VF_DHIRES; break; } - // Apple IIe, Technical Notes, #3: Double High-Resolution Graphics - // 80STORE must be OFF to display page 2 - if (SW_80STORE) - g_uVideoMode &= ~VF_PAGE2; - -// NTSC_BEGIN NTSC_SetVideoMode( g_uVideoMode ); -// NTSC_END return MemReadFloatingBus(uExecutedCycles); }