From 1f5eb2c442e666e79f000414e8d3204f8d4b06a1 Mon Sep 17 00:00:00 2001 From: toaster Date: Fri, 18 Mar 2022 16:50:13 +0000 Subject: [PATCH] Correct non-compiling iterators that retained their initialisation from the earlier pushes. --- src/p_spec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_spec.c b/src/p_spec.c index 9dcc55efc..f0e62b2b9 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -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) {