diff options
author | Tim Angus <tim@ngus.net> | 2001-08-07 21:14:01 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-08-07 21:14:01 +0000 |
commit | bf3bef5499e762aa5eee6e3e0935f7a913225a75 (patch) | |
tree | 5ae6a6912e7dac634ae6388512e2f6e127b68621 /src/cgame/cg_ents.c | |
parent | d1a82b792471283809914926c8d88d4ddecb026d (diff) |
Moved WW smoothing to client side. snarfed glibc acos
Diffstat (limited to 'src/cgame/cg_ents.c')
-rw-r--r-- | src/cgame/cg_ents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_ents.c b/src/cgame/cg_ents.c index 57b89fc6..62920756 100644 --- a/src/cgame/cg_ents.c +++ b/src/cgame/cg_ents.c @@ -655,7 +655,7 @@ static void CG_TorchLight( centity_t *cent ) if( cent->currentState.clientNum == cg.predictedPlayerState.clientNum ) { VectorCopy( cg.predictedPlayerState.origin, from ); - VectorCopy( cg.predictedPlayerState.viewangles, angles ); + VectorCopy( cg.refdefViewAngles, angles ); } else { |