From 5112aa9f245c23870234f8f7b466e43f843fb7d4 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 12 Feb 2026 19:09:10 +0200 Subject: [PATCH] Special cased lines that need to be drawn using normal mode. --- custom.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/custom.cpp b/custom.cpp index bedca431..35811804 100644 --- a/custom.cpp +++ b/custom.cpp @@ -11239,6 +11239,12 @@ static int can_fast_custom(void) return 0; #endif } + if (vpos == plflastline || vpos == plffirstline) { + return 0; + } + if (agnus_bsvb && !harddis_v) { + return 0; + } if (!display_hstart_fastmode) { return 0; } -- 2.47.3