Skip to content

Commit edf22c1

Browse files
committed
Replacing .0f with .0
1 parent 3edb37c commit edf22c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/AGKMath.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ CGFloat AGKRemapToZeroOne(CGFloat value, CGFloat startValue, CGFloat endValue)
3434
{
3535
CGFloat diff = endValue - startValue;
3636

37-
if(diff != 0.0f)
37+
if(diff != 0.0)
3838
{
3939
return (value - startValue) / diff;
4040
}
4141
else
4242
{
43-
return 0.0f;
43+
return 0.0;
4444
}
4545
}
4646

0 commit comments

Comments
 (0)