Fixed missed data extension in downloader

This commit is contained in:
Alex Zolotarev 2011-01-06 01:02:36 +02:00 committed by Alex Zolotarev
parent 90272e4bb3
commit 1e23c6a072

View file

@ -134,7 +134,13 @@ namespace storage
}
if (found != last && !(line < found->first))
currentCountry->AddTile(*found);
{
// fix extension for data files
if (found->first.find_last_of(DATA_FILE_EXTENSION) == string::npos)
currentCountry->AddTile(TTile(found->first + DATA_FILE_EXTENSION, found->second));
else
currentCountry->AddTile(*found);
}
}
break;
case 1: // country group