From f2aa05fe4ae82c9c491057fd4e99a55e00edd3cc Mon Sep 17 00:00:00 2001 From: Mikko Tiusanen Date: Thu, 16 Oct 2014 20:48:17 +0300 Subject: Revert "Disabled snapvector functionality." This reverts commit 6a9a24a39acdef6f2af7ef5b5d9f373338550d8b. --- src/game/g_weapon.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/game/g_weapon.c') diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index 0f265db..740ab32 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -188,7 +188,6 @@ into a wall. */ void SnapVectorTowards( vec3_t v, vec3_t to ) { - /* int i; for( i = 0 ; i < 3 ; i++ ) @@ -198,12 +197,10 @@ void SnapVectorTowards( vec3_t v, vec3_t to ) else v[ i ] = (int)( v[ i ] + ( to[ i ] <= v[ i ] ? -1 : 0 ) ); } - */ } void SnapVectorNormal( vec3_t v, vec3_t normal ) { - /* int i; for( i = 0 ; i < 3 ; i++ ) @@ -213,7 +210,6 @@ void SnapVectorNormal( vec3_t v, vec3_t normal ) else v[ i ] = (int)( v[ i ] + ( normal[ i ] <= 0 ? -1 : 0 ) ); } - */ } /* -- cgit