From 310d1d15890618f21c7e90d0c98b4f208c9c64ff Mon Sep 17 00:00:00 2001 From: flashjaysan Date: Sat, 13 Apr 2019 14:35:07 +0200 Subject: [PATCH] Update raymath.h Removed a useless semicolon. --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index 331165325..389a430f5 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -447,7 +447,7 @@ RMDEF Vector3 Vector3Transform(Vector3 v, Matrix mat) result.z = mat.m2*x + mat.m6*y + mat.m10*z + mat.m14; return result; -}; +} // Transform a vector by quaternion rotation RMDEF Vector3 Vector3RotateByQuaternion(Vector3 v, Quaternion q)