diff options
author | Tim Angus <tim@ngus.net> | 2001-07-01 19:11:24 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-07-01 19:11:24 +0000 |
commit | d26c448289364db6855930bd01cbed0af394a171 (patch) | |
tree | ffcaeee5d43df1814f672dd27369bbfda0a30b9b /src/game | |
parent | 65be9fc26e99a909d0b40ccfa5ba398adee034c4 (diff) |
Compile fix
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_buildable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index cc94bbce..d55e599c 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -389,7 +389,7 @@ qboolean hdef1_trackenemy( gentity_t *self ) VectorMA( self->enemy->s.pos.trBase, time, self->enemy->s.pos.trDelta, dirToTarget ); VectorMA( dirToTarget, time * time, halfAcceleration, dirToTarget ); - VectorMA( dirToTarget, time * time * time, thirdJounce, dirToTarget ); + VectorMA( dirToTarget, time * time * time, thirdJerk, dirToTarget ); VectorSubtract( dirToTarget, self->s.pos.trBase, dirToTarget ); distanceToTarget = VectorLength( dirToTarget ); |