From 4db23c10dc980d8251d3e67f689cb5dd0984e7cc Mon Sep 17 00:00:00 2001 From: tomcw Date: Sat, 6 Apr 2019 18:56:00 +0100 Subject: [PATCH] Fixed typo & inconsistency in $C070 write statement --- bin/History.txt | 2 +- source/Memory.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/History.txt b/bin/History.txt index 4578fb44..899d480e 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -13,7 +13,7 @@ Tom Charlesworth --------------------- . [Change #631] Improvements for the RGB AppleColor card: - Relax the video-mode precondition to just ignore if VF_MIXED (previously required HIRES on) for Apple II Desktop. - - Changing from DHGR B&W mode to HGR remains in B&W (color burst if off). + - Changing from DHGR B&W mode to HGR remains in B&W (color burst is off). - For '50% scan lines', don't blend in NTSC B&W mode, as this was inconsistent with the RGB colour rendering. . [Change #633] Improvements for the RGB AppleColor card: - Improved the video-mode precondition to ignore if 80COL ($C00C/D) occurs before DHIRESON ($C05F) for Renegade. diff --git a/source/Memory.cpp b/source/Memory.cpp index 5457e991..b91a7c58 100644 --- a/source/Memory.cpp +++ b/source/Memory.cpp @@ -587,7 +587,7 @@ static BYTE __stdcall IOWrite_C07x(WORD pc, WORD addr, BYTE bWrite, BYTE d, ULON switch (addr & 0xf) { - case 0x0: break; + case 0x0: return IO_Null(pc, addr, bWrite, d, nExecutedCycles); #ifdef RAMWORKS case 0x1: return MemSetPaging(pc, addr, bWrite, d, nExecutedCycles); // extended memory card set page case 0x2: return IO_Null(pc, addr, bWrite, d, nExecutedCycles);