From 2e7111d2c86deeabc9c9588ca0691f9fa0057aed Mon Sep 17 00:00:00 2001 From: Alug Date: Fri, 23 Jan 2026 18:32:31 +0100 Subject: [PATCH] software: fix drawseg xrange item coord type being too small both sprite and drawseg coords are int32 might fix some clipping issues --- src/r_things.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_things.cpp b/src/r_things.cpp index 9da9c674d..c1eafe480 100644 --- a/src/r_things.cpp +++ b/src/r_things.cpp @@ -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;