1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

Fixed CID 1243181, CID 1197449, CID 1366374, CID 1366377, CID 1366359

This commit is contained in:
AlexVinS
2016-11-24 20:34:37 +03:00
parent b880e2b586
commit db40e125eb
6 changed files with 15 additions and 15 deletions

View File

@@ -251,7 +251,7 @@ CRmgTemplate::CSize CRmgTemplateStorage::parseMapTemplateSize(const std::string
if(it == mapSizeMapping.end())
{
// Map size is given as a number representation
const auto & numericalRep = parts[0];
const std::string numericalRep = parts[0];
parts.clear();
boost::split(parts, numericalRep, boost::is_any_of("x"));
assert(parts.size() == 3);