Fix Windows Build.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2021-05-13 13:19:01 +02:00
parent 109042ff52
commit d8eac290cf
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

View File

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