Fixed crash on Android in debug mode when World maps are absent (not downloaded yet).

This commit is contained in:
Alex Zolotarev 2015-10-10 08:53:34 -07:00
parent a1a299eb34
commit 3714faa15d

View file

@ -195,7 +195,10 @@ void FindAllLocalMaps(vector<LocalCountryFile> & localFiles)
catch (RootException const & ex)
{
if (i == localFiles.end())
LOG(LERROR, ("Can't find any:", file, "Reason:", ex.Msg()));
{
// This warning is possible on android devices without pre-downloaded Worlds/fonts files.
LOG(LWARNING, ("Can't find any:", file, "Reason:", ex.Msg()));
}
}
}
}