forked from organicmaps/organicmaps
Fixed crash on Android in debug mode when World maps are absent (not downloaded yet).
This commit is contained in:
parent
a1a299eb34
commit
3714faa15d
1 changed files with 4 additions and 1 deletions
|
@ -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()));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue