summaryrefslogtreecommitdiff
path: root/src/game/g_active.c
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2014-06-17 17:43:05 +0100
committerTim Angus <tim@ngus.net>2014-06-17 17:43:43 +0100
commit77c45fa12305eb8c977c5c7803f6cb1f24ce4ec4 (patch)
treeec9324ad73575a42b2eec5050a746b07aa26989d /src/game/g_active.c
parent1193e49c35fdd0ea24f21c6dff74b5b2cd074c3b (diff)
Various adjustments so it compiles
Diffstat (limited to 'src/game/g_active.c')
-rw-r--r--src/game/g_active.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/g_active.c b/src/game/g_active.c
index 16b21349..1b7be618 100644
--- a/src/game/g_active.c
+++ b/src/game/g_active.c
@@ -1052,13 +1052,13 @@ void G_UnlaggedCalc( int time, gentity_t *rewindEnt )
continue;
// between two unlagged markers
- VectorLerp( lerp, ent->client->unlaggedHist[ startIndex ].mins,
+ VectorLerp2( lerp, ent->client->unlaggedHist[ startIndex ].mins,
ent->client->unlaggedHist[ stopIndex ].mins,
ent->client->unlaggedCalc.mins );
- VectorLerp( lerp, ent->client->unlaggedHist[ startIndex ].maxs,
+ VectorLerp2( lerp, ent->client->unlaggedHist[ startIndex ].maxs,
ent->client->unlaggedHist[ stopIndex ].maxs,
ent->client->unlaggedCalc.maxs );
- VectorLerp( lerp, ent->client->unlaggedHist[ startIndex ].origin,
+ VectorLerp2( lerp, ent->client->unlaggedHist[ startIndex ].origin,
ent->client->unlaggedHist[ stopIndex ].origin,
ent->client->unlaggedCalc.origin );