mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
Camera paths would hold indeterminate of the level
This commit is contained in:
parent
cbb066f1fb
commit
5164b78c31
1 changed files with 2 additions and 2 deletions
|
@ -301,14 +301,14 @@ void APathFollower::Tick ()
|
|||
bJustStepped = false;
|
||||
if (CurrNode->args[2])
|
||||
{
|
||||
HoldTime = gametic + CurrNode->args[2] * TICRATE / 8;
|
||||
HoldTime = level.time + CurrNode->args[2] * TICRATE / 8;
|
||||
x = CurrNode->x;
|
||||
y = CurrNode->y;
|
||||
z = CurrNode->z;
|
||||
}
|
||||
}
|
||||
|
||||
if (HoldTime > gametic)
|
||||
if (HoldTime > level.time)
|
||||
return;
|
||||
|
||||
// Splines must have a previous node.
|
||||
|
|
Loading…
Reference in a new issue