summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2001-08-06 20:12:23 +0000
committerTim Angus <tim@ngus.net>2001-08-06 20:12:23 +0000
commit5a7e0d4095964285604cc4d86b5a9cabdf47f368 (patch)
tree497ee7857bd5d805d6f61be8b65cd66fd4ae36fb /src/game
parent202dc4c003b69fffa9500d687532bd889f7a6e95 (diff)
FINALLY fixed wall walking to handle the general case properly
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_pmove.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c
index 7005754e..85727d4d 100644
--- a/src/game/bg_pmove.c
+++ b/src/game/bg_pmove.c
@@ -2636,11 +2636,6 @@ void PM_UpdateViewAngles( playerState_t *ps, const usercmd_t *cmd ) {
else
rotAngle = RAD2DEG( acos( DotProduct( surfNormal, refNormal ) ) );
- //FIXME: rotAngle is always +ve??
- //-abs( rotAngle ).. sorta
-/* if( rotAngle > 0 )
- rotAngle = -rotAngle;*/
-
//hmmm could get away with only one rotation and some clever stuff later... but i'm lazy
RotatePointAroundVector( rotaxis[0], xNormal, axis[0], -rotAngle );
RotatePointAroundVector( rotaxis[1], xNormal, axis[1], -rotAngle );