From 059e2e39f8a499a59d87f3fd99277edb1444da97 Mon Sep 17 00:00:00 2001 From: kub Date: Fri, 31 Jan 2025 21:00:56 +0100 Subject: [PATCH] core vdp, fix crash in VSRAM rendering --- pico/draw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pico/draw.c b/pico/draw.c index 12d0d935..fde65e74 100644 --- a/pico/draw.c +++ b/pico/draw.c @@ -59,8 +59,8 @@ static u16 DefOutBuff[320*2] ALIGNED(4); void *DrawLineDestBase = DefOutBuff; int DrawLineDestIncrement; -static u32 HighCacheA[41*2+1]; // caches for high layers -static u32 HighCacheB[41*2+1]; +static u32 HighCacheA[42*2+1]; // caches for high layers +static u32 HighCacheB[42*2+1]; static s32 HighPreSpr[128*2*2]; // slightly preprocessed sprites (2 banks a 128) static int HighPreSprBank; -- 2.39.5