Fix reported type of LBoolean

This commit is contained in:
James Roseborough
2007-10-04 20:44:52 +00:00
parent 72bfd0a376
commit eba4f34505

View File

@@ -33,6 +33,6 @@ public final class LBoolean extends LValue {
}
public int luaGetType() {
return Lua.LUA_TFUNCTION;
return Lua.LUA_TBOOLEAN;
}
}