From 41e2c50ab8f6d7f9dd1aaf7c7b3166f2d59c262c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Bispo?= Date: Mon, 16 Sep 2024 15:26:00 -0300 Subject: [PATCH] Fix missing semicolon --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index d9e5f7a12..539617ff9 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -402,7 +402,7 @@ RMAPI Vector2 Vector2Limit(Vector2 v, float limit) { result.x = v.x*ilength*limit; result.y = v.y*ilength*limit; } - return result + return result; } // Transforms a Vector2 by a given Matrix