浏览代码

flash9 update

Nicolas Cannasse 19 年之前
父节点
当前提交
b79cf13190
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      std/Std.hx

+ 4 - 0
std/Std.hx

@@ -62,7 +62,11 @@ class Std {
 		Convert a Float to an Int, rounded down.
 	**/
 	public static function int( x : Float ) : Int {
+		#if flash9
+		return untyped __global__["int"](x);
+		#else true
 		return Math.floor(x);
+		#end
 	}
 
 	/**