From 26bc13b841a44ab1587f727f9a1d2fa5cb461850 Mon Sep 17 00:00:00 2001 From: kub Date: Wed, 19 Feb 2025 20:17:32 +0100 Subject: [PATCH] core vdp, fix crash in VSRAM rendering real fix, replacing the kluge in 059e2e3 --- pico/draw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pico/draw.c b/pico/draw.c index f1d92f4b..e3cfe03a 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[42*2+1]; // caches for high layers -static u32 HighCacheB[42*2+1]; +static u32 HighCacheA[41*2+1]; // caches for high layers +static u32 HighCacheB[41*2+1]; static s32 HighPreSpr[128*2*2]; // slightly preprocessed sprites (2 banks a 128) static int HighPreSprBank; @@ -419,7 +419,7 @@ void funcname(struct TileStrip *ts, int lflags, int cellskip) \ if (ts->hscroll & 0x0f) { \ int adj = ((ts->hscroll ^ dx) >> 3) & 1; \ cell -= adj + 1; \ - ts->cells -= adj; \ + ts->cells -= adj + 1; \ PicoMem.vsram[0x3e] = PicoMem.vsram[0x3f] = lflags >> 16; \ } \ cell+=cellskip; \ -- 2.39.5