From fda8e51ff786c2b09e1e4734f80a2f27ef81be74 Mon Sep 17 00:00:00 2001 From: Brian-E Date: Sun, 17 Sep 2023 15:19:52 +0100 Subject: [PATCH] reverted one more indentation change --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index e6740a1c4..48bae01a9 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -507,7 +507,7 @@ RMAPI Vector2 Vector2ClampValue(Vector2 v, float min, float max) RMAPI int Vector2Equals(Vector2 p, Vector2 q) { int result = ((fabsf(p.x - q.x)) <= (EPSILON*fmaxf(1.0f, fmaxf(fabsf(p.x), fabsf(q.x))))) && - ((fabsf(p.y - q.y)) <= (EPSILON*fmaxf(1.0f, fmaxf(fabsf(p.y), fabsf(q.y))))); + ((fabsf(p.y - q.y)) <= (EPSILON*fmaxf(1.0f, fmaxf(fabsf(p.y), fabsf(q.y))))); return result; }