From 72891921305012f377e93b26d6cfc244d8b1b04c Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 16 Aug 2022 21:51:02 -0400 Subject: [PATCH] Fix refresh slots: they're taken, not open. --- Machines/Amiga/Chipset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Amiga/Chipset.cpp b/Machines/Amiga/Chipset.cpp index c8accc853..8f1c23f25 100644 --- a/Machines/Amiga/Chipset.cpp +++ b/Machines/Amiga/Chipset.cpp @@ -590,7 +590,7 @@ template bool Chipset::perform_cycle() { // Blitter and CPU priority is dealt with below. if constexpr (cycle >= 0x00 && cycle < 0x08) { // Memory refresh, four slots per line. - return true; + return false; } if constexpr (cycle >= 0x08 && cycle < 0x0e) {