Fix Windows Build.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-05-13 13:19:01 +02:00
parent 109042ff52
commit d8eac290cf

View File

@@ -425,5 +425,5 @@ i32 AngelScriptResolver::IncludeCallback(const char* include, const char*, CScri
if (!std::filesystem::exists(path)) { if (!std::filesystem::exists(path)) {
return -102; return -102;
} }
return builder->AddSectionFromFile(path.c_str()); return builder->AddSectionFromFile((const char*)path.c_str());
} }