1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00

Another Appveyor path fix

This commit is contained in:
mordred 2018-10-26 14:29:19 +02:00
parent aff82d430e
commit d26db1d96c

View file

@ -76,7 +76,7 @@ Core::Scripting::ScriptInfo* Core::Scripting::ScriptLoader::loadModule( const st
#ifdef _WIN32
ModuleHandle handle = LoadLibrary( dest.c_str() );
ModuleHandle handle = LoadLibrary( dest.string().c_str() );
#else
ModuleHandle handle = dlopen( dest.c_str(), RTLD_LAZY );
#endif