1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-10-08 23:22:25 +02:00

format fix

This commit is contained in:
Laserlicht
2025-06-20 03:46:27 +02:00
parent eef3e00f42
commit a8af226ec5

View File

@@ -357,7 +357,7 @@ std::shared_ptr<IImage> RenderHandler::loadImage(const ImagePath & path, EImageB
auto name = path.getOriginalName();
std::vector<std::string> splitted;
boost::split(splitted, name, boost::is_any_of(":"));
boost::split(splitted, name, boost::is_any_of(":"));
if(splitted.size() == 3)
{
ImageLocator locator = getLocatorForAnimationFrame(AnimationPath::builtin(splitted[0]), std::stoi(splitted[2]), std::stoi(splitted[1]), 1, mode);