From: kub Date: Thu, 4 Mar 2021 23:38:41 +0000 (+0100) Subject: vdp rendering, fix crash for sprites with negative x/y (overlooked commit) X-Git-Tag: v2.00~593 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=583c4840cf4b0057271639bed3ff804ca5e14fd5;p=picodrive.git vdp rendering, fix crash for sprites with negative x/y (overlooked commit) --- diff --git a/pico/pico_int.h b/pico/pico_int.h index 3cf5858c..cc3d2f44 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -353,7 +353,7 @@ struct PicoEState int rendstatus; void *DrawLineDest; // draw destination unsigned char *HighCol; - u32 *HighPreSpr; + s32 *HighPreSpr; struct Pico *Pico; unsigned short *PicoMem_vram; unsigned short *PicoMem_cram;