Skip to content

Commit 864e18a

Browse files
committed
Removed extra parenthesis. [skip ci]
1 parent 8d3686f commit 864e18a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/RhythmGameUtilities/Common.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ extern "C"
4040

4141
PACKAGE_API float InverseLerp(float a, float b, float v)
4242
{
43-
return std::clamp(((v - a) / (b - a)), 0.0F, 1.0F);
43+
return std::clamp((v - a) / (b - a), 0.0F, 1.0F);
4444
}
4545
}
4646

0 commit comments

Comments
 (0)