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);