浏览代码

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

Nathan Warden 7 年之前
父节点
当前提交
2109bd3f97
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/mono/glue/cs_files/Mathf.cs

+ 1 - 1
modules/mono/glue/cs_files/Mathf.cs

@@ -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)