From 7540ad41bb612551440e8df226a286e9e5fc68b0 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sun, 12 May 2024 19:31:17 +0300 Subject: [PATCH] OCS Agnus + OCS Denise config also has line 0 visible at the bottom of screen (like A1000) --- custom.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/custom.cpp b/custom.cpp index 5368371d..7ad1db01 100644 --- a/custom.cpp +++ b/custom.cpp @@ -7280,10 +7280,13 @@ static void init_beamcon0(bool fakehz) maxvpos_nom = maxvpos; maxvpos_display = maxvpos; maxvpos_display_vsync = 1; - // A1000 Agnus VBSTRT=first line, OCS and later: VBSTRT=last line if (agnusa1000) { + // A1000 Agnus VBSTRT=first line, OCS and later: VBSTRT=last line maxvpos_display_vsync++; hardwired_vsstrt++; + } else if (!ecs_agnus && !ecs_denise) { + // OCS Agnus + OCS Denise: line 0 is visible + maxvpos_display_vsync++; } vblank_firstline_hw = minfirstline; -- 2.47.3