Nicolas Cannasse 13 years ago
parent
commit
2ec20fa79a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/cs/_std/haxe/Int64.hx

+ 1 - 1
std/cs/_std/haxe/Int64.hx

@@ -45,7 +45,7 @@ private typedef NativeUInt64 = Int;
 		return cast (x.asNative() & 0xFFFFFFFF.mkNative());
 	}
 
-	public static inline function getHigh( x : haxe.Int64 ) : Int32 {
+	public static inline function getHigh( x : haxe.Int64 ) : Int {
 		return cast(x,NativeUInt64) >> 32;
 	}