From: Toni Wilen Date: Sat, 25 Mar 2023 18:45:55 +0000 (+0200) Subject: Adjust Agnus Chip RAM max capability only if manually configured. Allow OCS to access... X-Git-Tag: 5.0.0~100 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=6b30972078754704ec26588be628c48132d87099;p=francis%2Fwinuae.git Adjust Agnus Chip RAM max capability only if manually configured. Allow OCS to access >512k Chip RAM by default. --- 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) {