From 4fe0eeda6167fef58aa2406b5b69c780056b41a7 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Mon, 17 Mar 2025 20:20:46 +0200 Subject: [PATCH] Fix EHB --- drawing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drawing.cpp b/drawing.cpp index 15567586..b06a1fa1 100644 --- a/drawing.cpp +++ b/drawing.cpp @@ -2666,7 +2666,7 @@ static void setbplmode(void) { bplham = (bplcon0_denise & 0x800) != 0; bpldualpf = (bplcon0_denise & 0x400) == 0x400; - bplehb = denise_planes == 6 && !bplham && !bpldualpf && (!ecs_denise || !(bplcon2_denise & 0x200 || !(bplcon0_denise & 1))); + bplehb = denise_planes == 6 && !bplham && !bpldualpf && (!ecs_denise || !(bplcon2_denise & 0x200) || !(bplcon0_denise & 1)); // BYPASS: HAM and EHB select bits are ignored bpland = 0xff; -- 2.47.3