mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-03-21 18:31:37 +00:00
fix type mismatch by typecasting
This commit is contained in:
parent
1638fad75e
commit
62ed90b252
1 changed files with 1 additions and 1 deletions
|
@ -602,7 +602,7 @@ void P_CopySectorSlope(line_t *line)
|
|||
|
||||
// if this is an FOF control sector, make sure any target sectors also are marked as having slopes
|
||||
if (fsec->numattached)
|
||||
for (i = 0; i < fsec->numattached; i++)
|
||||
for (i = 0; i < (int)fsec->numattached; i++)
|
||||
sectors[fsec->attached[i]].hasslope = true;
|
||||
|
||||
line->special = 0; // Linedef was use to set slopes, it finished its job, so now make it a normal linedef
|
||||
|
|
Loading…
Reference in a new issue