Explorar o código

Lua: fix Std.is for Int

Justin Donaldson %!s(int64=10) %!d(string=hai) anos
pai
achega
634825dcaf
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      std/lua/Boot.hx

+ 1 - 1
std/lua/Boot.hx

@@ -87,7 +87,7 @@ class Boot {
 
 		switch( cl ) {
 			case Int:
-				return (untyped __lua__("bitor(o,0) == o"));
+				return (untyped __lua__("_G.bit.bor(o,0) == o"));
 			case Float:
 				return untyped __type__(o) == "number";
 			case Bool: