diff --git a/sweet_math.c b/sweet_math.c index 9b652f9..4b71325 100755 --- a/sweet_math.c +++ b/sweet_math.c @@ -171,7 +171,7 @@ vec4_square_norm (vec4 v) } float -vect2_dist (vec2 a, vec2 b) +vec2_dist (vec2 a, vec2 b) { float dx = a.x - b.x; float dy = a.y - b.y;