Fixed wrong return and bump lua

This commit is contained in:
KiritoDv 2025-03-10 18:53:14 -06:00
parent 63a350871a
commit a65b1b6ca8
2 changed files with 2 additions and 2 deletions

View file

@ -248,7 +248,7 @@ include(FetchContent)
FetchContent_Declare(
lua
GIT_REPOSITORY https://github.com/Net64DD/lua.git
GIT_TAG c914d7c177976ff5a532a77931e8275abf65532c
GIT_TAG f04f16c74efff04cc807d04a468e1a7880bbd691
)
FetchContent_MakeAvailable(lua)

View file

@ -40,7 +40,7 @@ void ScriptingLayer::Init() {
}
} catch (const sol::error& e) {
SPDLOG_ERROR(std::string(e.what()));
return 0;
return;
}
}