Fix an infinite recursion in the Mathf.Decimals method when using floats.
(cherry picked from commit 2109bd3f97
)
This commit is contained in:
parent
501880e9ba
commit
4a3a597377
|
@ -71,7 +71,7 @@ namespace Godot
|
||||||
|
|
||||||
public static int Decimals(float step)
|
public static int Decimals(float step)
|
||||||
{
|
{
|
||||||
return Decimals(step);
|
return Decimals((decimal)step);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int Decimals(decimal step)
|
public static int Decimals(decimal step)
|
||||||
|
|
Loading…
Reference in New Issue