summaryrefslogtreecommitdiffstats
path: root/Smoke/funcs.c
diff options
context:
space:
mode:
authorWilrik de Loose <wilrik@wilrik.nl>2007-12-14 12:24:12 (GMT)
committerWilrik de Loose <wilrik@wilrik.nl>2007-12-14 12:24:12 (GMT)
commitdbc6530ef4b5a5ce4284b0cb32e2f61677b47b18 (patch)
treea5f54b566e9c4b7fe34edb7ef0a271fa56bb8d2b /Smoke/funcs.c
parent9aaa000d79789033ea531c7d2c140fee1283305c (diff)
download2iv35-dbc6530ef4b5a5ce4284b0cb32e2f61677b47b18.zip
2iv35-dbc6530ef4b5a5ce4284b0cb32e2f61677b47b18.tar.gz
2iv35-dbc6530ef4b5a5ce4284b0cb32e2f61677b47b18.tar.bz2
Diffstat (limited to 'Smoke/funcs.c')
-rw-r--r--Smoke/funcs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Smoke/funcs.c b/Smoke/funcs.c
index eb8cc2d..e760c72 100644
--- a/Smoke/funcs.c
+++ b/Smoke/funcs.c
@@ -7,7 +7,7 @@
#include "funcs.h"
-float square_root(float number)
+float quake_root(float number)
{
long i;
float x, y;
@@ -25,5 +25,5 @@ float square_root(float number)
float vec_len(float x, float y)
{
- return (square_root((x * x) + (y * y)));
-} \ No newline at end of file
+ return (quake_root((x * x) + (y * y)));
+}