1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-13 01:20:34 +02:00

fix compile error

This commit is contained in:
kdmcser
2025-04-20 00:34:18 +08:00
parent c3c8b5048a
commit 84202ee64f

View File

@ -419,7 +419,7 @@ boost::filesystem::path TextOperations::Utf8TofilesystemPath(const std::string&
#ifdef VCMI_WINDOWS #ifdef VCMI_WINDOWS
return boost::filesystem::path(boost::locale::conv::utf_to_utf<wchar_t>(path)); return boost::filesystem::path(boost::locale::conv::utf_to_utf<wchar_t>(path));
#else #else
return boost::filesystem::path(path.string()); return boost::filesystem::path(path);
#endif #endif
} }