]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - mathlib.c
rewrote RecursiveHullCheck, no longer gets stuck on angle changes, and is generally...
[xonotic/darkplaces.git] / mathlib.c
index 6709b1e54b478dfdeb15513334804c4dc658d4f8..726cd089590a16dc992d46479d4d74d020c5404e 100644 (file)
--- a/mathlib.c
+++ b/mathlib.c
@@ -631,7 +631,7 @@ int VectorCompare (vec3_t v1, vec3_t v2)
        return 1;
 }
 
-void VectorMA (vec3_t veca, float scale, vec3_t vecb, vec3_t vecc)
+void VectorMASlow (vec3_t veca, float scale, vec3_t vecb, vec3_t vecc)
 {
        vecc[0] = veca[0] + scale*vecb[0];
        vecc[1] = veca[1] + scale*vecb[1];