diff options
Diffstat (limited to 'src/qcommon/q_math.c')
-rw-r--r-- | src/qcommon/q_math.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qcommon/q_math.c b/src/qcommon/q_math.c index e987b6b5..a3a7b191 100644 --- a/src/qcommon/q_math.c +++ b/src/qcommon/q_math.c @@ -1134,7 +1134,6 @@ qboolean BoundsIntersectPoint(const vec3_t mins, const vec3_t maxs, } vec_t VectorNormalize( vec3_t v ) { - // NOTE: TTimo - Apple G4 altivec source uses double? float length, ilength; length = v[0]*v[0] + v[1]*v[1] + v[2]*v[2]; |