This commit is contained in:
Christoph Oelckers 2016-01-25 21:13:04 +01:00
commit d8d4679471
24 changed files with 166 additions and 101 deletions

View file

@ -261,9 +261,12 @@ void FInterpolator::DoInterpolations(fixed_t smoothratio)
didInterp = true;
for (DInterpolation *probe = Head; probe != NULL; probe = probe->Next)
DInterpolation *probe = Head;
while (probe != NULL)
{
DInterpolation *next = probe->Next;
probe->Interpolate(smoothratio);
probe = next;
}
}