mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 21:01:04 +00:00
Make sure nptfront is explicitly > 0, so we don't alloc a poly for negative number points at all
This commit is contained in:
parent
4089b6b8e9
commit
02fc845a72
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ static void SplitPoly (fdivline_t *bsp, //splitting parametric line
|
|||
*backpoly = HWR_AllocPoly(2 + nptback);
|
||||
else
|
||||
*backpoly = NULL;
|
||||
if (nptfront)
|
||||
if (nptfront > 0)
|
||||
*frontpoly = HWR_AllocPoly(2 + nptfront);
|
||||
else
|
||||
*frontpoly = NULL;
|
||||
|
|
Loading…
Reference in a new issue