software: fix drawseg xrange item coord type being too small

both sprite and drawseg coords are int32
might fix some clipping issues
This commit is contained in:
Alug 2026-01-23 18:32:31 +01:00 committed by NepDisk
parent 6aac27ff1d
commit 2e7111d2c8

View file

@ -100,7 +100,7 @@ static const char *spritename;
typedef struct drawseg_xrange_item_s
{
INT16 x1, x2;
INT32 x1, x2;
drawseg_t *user;
} drawseg_xrange_item_t;