- fixed: instant sector movement actions must actually delete the created interpolation right away and not wait until it deletes itself.

This commit is contained in:
Christoph Oelckers 2016-02-11 22:03:09 +01:00
commit bf03ea496e
8 changed files with 19 additions and 25 deletions

View file

@ -95,11 +95,11 @@ void DMover::Serialize (FArchive &arc)
arc << interpolation;
}
void DMover::StopInterpolation()
void DMover::StopInterpolation(bool force)
{
if (interpolation != NULL)
{
interpolation->DelRef();
interpolation->DelRef(force);
interpolation = NULL;
}
}