Merge pull request #387 from waywardmonkeys/remove-narrowing-conversion

glm_ease_back_inout: Use float constant for float var.
This commit is contained in:
Recep Aslantas
2024-02-10 23:49:37 +03:00
committed by GitHub

View File

@@ -235,7 +235,7 @@ glm_ease_back_inout(float t) {
o = 1.70158f;
s = o * 1.525f;
x = 0.5;
x = 0.5f;
n = t / 0.5f;
if (n < 1.0f) {