mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Correct non-compiling iterators that retained their initialisation from the earlier pushes.
This commit is contained in:
parent
230b301455
commit
1f5eb2c442
1 changed files with 2 additions and 2 deletions
|
|
@ -3797,7 +3797,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
|
|||
break;
|
||||
}
|
||||
|
||||
TAG_ITER_SECTORS(0, tag, secnum)
|
||||
TAG_ITER_SECTORS(tag, secnum)
|
||||
{
|
||||
sec = sectors + secnum;
|
||||
|
||||
|
|
@ -7437,7 +7437,7 @@ static void P_SpawnScrollers(void)
|
|||
break;
|
||||
|
||||
case 509: // scroll front and backside of tagged lines
|
||||
TAG_ITER_LINES(0, tag, s)
|
||||
TAG_ITER_LINES(tag, s)
|
||||
{
|
||||
if (s != (INT32)i)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue