fix headless mode fatal error in some systems

This commit is contained in:
MihailRis
2025-11-29 18:29:04 +03:00
parent 618b3d7f61
commit bcfcd9ca76
5 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -12,7 +12,7 @@
#include "logic/scripting/scripting.hpp"
#include "core_defs.hpp"
static void load_configs(Input& input, const io::path& root) {
static void load_configs(Input* input, const io::path& root) {
auto configFolder = root / "config";
}
@@ -26,7 +26,7 @@ static std::vector<io::path> default_content_sources {
ContentControl::ContentControl(
const Project& project,
EnginePaths& paths,
Input& input,
Input* input,
std::function<void()> postContent
)
: paths(paths),