mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
Fixed CID 1197411
This commit is contained in:
parent
d81c611ad7
commit
dc1015fac9
@ -42,7 +42,8 @@ void CFilesystemGenerator::loadConfig(const JsonNode & config)
|
||||
logGlobal->debugStream() << "\t\tLoading resource at " << prefix + entry["path"].String();
|
||||
|
||||
auto map = genFunctorMap();
|
||||
auto functor = map.find(entry["type"].String());
|
||||
auto typeName = entry["type"].String();
|
||||
auto functor = map.find(typeName);
|
||||
|
||||
if (functor != map.end())
|
||||
{
|
||||
@ -51,7 +52,7 @@ void CFilesystemGenerator::loadConfig(const JsonNode & config)
|
||||
}
|
||||
else
|
||||
{
|
||||
logGlobal->errorStream() << "Unknown filesystem format: " << functor->first;
|
||||
logGlobal->error("Unknown filesystem format: %s", typeName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user