فهرست منبع

Lua: fix Std.is for Int

Justin Donaldson 10 سال پیش
والد
کامیت
634825dcaf
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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: