- Fixed crash with Scroll_Texture_Offsets with non-zero tag

This commit is contained in:
Player701 2021-12-27 14:27:35 +03:00 committed by Christoph Oelckers
parent 2945e10a0e
commit f02060f822
1 changed files with 2 additions and 2 deletions

View File

@ -1414,9 +1414,9 @@ void MapLoader::SpawnScrollers()
else
{
auto it = Level->GetLineIdIterator(l->args[1]);
while (int ln = it.Next())
while ((s = it.Next()) >= 0)
{
Level->CreateThinker<DScroller>(EScroll::sc_side, dx, dy, control, nullptr, Level->lines[ln].sidedef[0], accel, SCROLLTYPE(l->args[0]));
Level->CreateThinker<DScroller>(EScroll::sc_side, dx, dy, control, nullptr, Level->lines[s].sidedef[0], accel, SCROLLTYPE(l->args[0]));
}
}
break;