]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/util.qh
Use vec3 and get rid of FL2VEC -- This function didn't exist when I first
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / util.qh
index effdb3cf7823ff8089ed0099a1808fd5e37e3e11..a9f9095c7a40492e6615258364cc0ca059c08620 100644 (file)
@@ -101,7 +101,7 @@ void buf_save(float buf, string filename);
 
 // modulo function
 #ifndef MENUQC
-float mod(float a, float b) { return a - (floor(a / b) * b); }   
+float mod(float a, float b) { return a - (floor(a / b) * b); }
 #endif
 
 #define TIME_TO_NTHS(t,n) floor((t) * (n) + 0.4)