Fixed crash when file was downloaded (due to not full path)

This commit is contained in:
Alex Zolotarev 2011-01-07 17:37:34 +02:00 committed by Alex Zolotarev
parent cd04393dde
commit 7d0c61e0b3

View file

@ -297,7 +297,7 @@ namespace storage
if (size.second != 0)
m_countryProgress.first = (m_countryProgress.second - size.second);
// activate downloaded map piece
string const datFile = FileFromUrl(url);
string const datFile = GetPlatform().ReadPathForFile(FileFromUrl(url));
m_addMap(datFile);
}
DownloadNextCountryFromQueue();