Nicolas Cannasse пре 13 година
родитељ
комит
8ff3d5730d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      std/js/_std/IntHash.hx

+ 1 - 1
std/js/_std/IntHash.hx

@@ -55,7 +55,7 @@
 
 	public function keys() : Iterator<Int> {
 		var a = new Array();
-		untyped __js__("for( x in this.h ) a.push(x)");
+		untyped __js__("for( x in this.h ) a.push(x|0)");
 		return a.iterator();
 	}