mirror of
https://github.com/OpenMW/openmw.git
synced 2025-05-06 15:11:26 +00:00
parent
56d9758af2
commit
47df1ca1f8
1 changed files with 4 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
||||||
#endif // NO_LUAJIT
|
#endif // NO_LUAJIT
|
||||||
|
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
|
#include <fstream>
|
||||||
|
|
||||||
#include <components/debug/debuglog.hpp>
|
#include <components/debug/debuglog.hpp>
|
||||||
#include <components/vfs/manager.hpp>
|
#include <components/vfs/manager.hpp>
|
||||||
|
@ -273,7 +274,9 @@ namespace LuaUtil
|
||||||
sol::function LuaState::loadInternalLib(std::string_view libName)
|
sol::function LuaState::loadInternalLib(std::string_view libName)
|
||||||
{
|
{
|
||||||
std::string path = packageNameToPath(libName, mLibSearchPaths);
|
std::string path = packageNameToPath(libName, mLibSearchPaths);
|
||||||
sol::load_result res = mLua.load_file(path, sol::load_mode::text);
|
std::ifstream stream(path);
|
||||||
|
std::string fileContent(std::istreambuf_iterator<char>(stream), {});
|
||||||
|
sol::load_result res = mLua.load(fileContent, path, sol::load_mode::text);
|
||||||
if (!res.valid())
|
if (!res.valid())
|
||||||
throw std::runtime_error("Lua error: " + res.get<std::string>());
|
throw std::runtime_error("Lua error: " + res.get<std::string>());
|
||||||
return res;
|
return res;
|
||||||
|
|
Loading…
Reference in a new issue