1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00

PCX file conversion in Resource Extractor throws exception on IOS (boost::locale stuff)

This commit is contained in:
krs 2022-12-06 00:49:39 +02:00
parent fd21f9ead2
commit 117496cb23

View File

@ -48,7 +48,7 @@ void ResourceConverter::doConvertPcxToPng(bool deleteOriginals)
std::string filePath = dir_itr->path().string();
std::string fileStem = dir_itr->path().stem().string();
filename = dir_itr->path().filename().string();
std::string filenameLowerCase = boost::locale::to_lower(filename);
std::string filenameLowerCase = boost::algorithm::to_lower_copy(filename);
if(bfs::extension(filenameLowerCase) == ".pcx")
{