Fix various macOS compatibility issues

This commit is contained in:
Lucca Jiménez Könings
2021-11-25 01:41:41 +01:00
committed by Lion
parent 6247061d09
commit 1a2a123d87
6 changed files with 17 additions and 14 deletions

View File

@@ -42,7 +42,7 @@ static std::string LuaToString(const sol::object Value, size_t Indent = 1, bool
ss << Value.as<float>();
return ss.str();
}
case sol::type::nil:
case sol::type::lua_nil:
case sol::type::none:
return "<nil>";
case sol::type::boolean: