We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3686f commit 864e18aCopy full SHA for 864e18a
include/RhythmGameUtilities/Common.hpp
@@ -40,7 +40,7 @@ extern "C"
40
41
PACKAGE_API float InverseLerp(float a, float b, float v)
42
{
43
- return std::clamp(((v - a) / (b - a)), 0.0F, 1.0F);
+ return std::clamp((v - a) / (b - a), 0.0F, 1.0F);
44
}
45
46
0 commit comments