From ec313ebab6e0c0105cf5b87a4bb852b38f875daf Mon Sep 17 00:00:00 2001 From: Leandro Gabriel <45115495+VelocityIsNotSpeed@users.noreply.github.com> Date: Wed, 24 Jul 2019 17:43:19 -0300 Subject: [PATCH] Fix mistake in comment --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index ab9d03944..3bf326971 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -148,7 +148,7 @@ RMDEF float Clamp(float value, float min, float max) return res > max ? max : res; } -// Calculate linear interpolation between two vectors +// Calculate linear interpolation between two floats RMDEF float Lerp(float start, float end, float amount) { return start + amount*(end - start);