Fix an infinite recursion in the Mathf.Decimals method when using floats.

This commit is contained in:
Nathan Warden 2018-01-31 14:02:17 -05:00
parent 9f3138eea9
commit 2109bd3f97

View file

@ -71,7 +71,7 @@ namespace Godot
public static int Decimals(float step)
{
return Decimals(step);
return Decimals((decimal)step);
}
public static int Decimals(decimal step)