From 6b30972078754704ec26588be628c48132d87099 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 25 Mar 2023 20:45:55 +0200 Subject: [PATCH] Adjust Agnus Chip RAM max capability only if manually configured. Allow OCS to access >512k Chip RAM by default. --- memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memory.cpp b/memory.cpp index 6d583e80..081074ca 100644 --- a/memory.cpp +++ b/memory.cpp @@ -2431,7 +2431,7 @@ static void allocate_memory (void) } } - if (currprefs.cs_agnusmodel > 0) { + if (currprefs.cs_agnussize > AGNUSSIZE_AUTO) { if (currprefs.cs_agnussize <= AGNUSSIZE_512) { chipmem_full_mask = 0x80000 - 1; } else if (currprefs.cs_agnussize == AGNUSSIZE_1M && chipmem_full_mask > 0x100000) { -- 2.47.3