From: kub <derkub@gmail.com>
Date: Wed, 19 Feb 2025 19:17:32 +0000 (+0100)
Subject: core vdp, fix crash in VSRAM rendering
X-Git-Tag: v2.04~44
X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26bc13b841a44ab1587f727f9a1d2fa5cb461850;p=picodrive.git

core vdp, fix crash in VSRAM rendering

real fix, replacing the kluge in 059e2e3
---

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;							\