From: kub Date: Fri, 31 Jan 2025 20:00:56 +0000 (+0100) Subject: core vdp, fix crash in VSRAM rendering X-Git-Tag: v2.04~65 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=059e2e39f8a499a59d87f3fd99277edb1444da97;p=picodrive.git core vdp, fix crash in VSRAM rendering --- 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;