1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-28 23:27:45 +00:00

Potential windows build fix

This commit is contained in:
mordred 2018-10-26 13:50:08 +02:00
parent be39a5d3cd
commit 08b14b86c5

View file

@ -14,7 +14,7 @@ bool Core::ConfigMgr::loadConfig( const std::string& configName )
auto configDir = std::experimental::filesystem::path( m_configFolderRoot );
m_pInih = std::unique_ptr< INIReader >( new INIReader(
std::experimental::filesystem::path( configDir / configName ) ) );
std::experimental::filesystem::path( configDir / configName ) ).string() );
if( m_pInih->ParseError() < 0 )
return false;