forked from organicmaps/organicmaps-tmp
IsEnoughSpaceForDownload() fix. Case when mwm size became smaller.
This commit is contained in:
parent
a324094b7a
commit
f4a6deb5a4
1 changed files with 3 additions and 1 deletions
|
@ -33,7 +33,9 @@ bool IsEnoughSpaceForDownload(TCountryId const & countryId, Storage const & stor
|
|||
{
|
||||
NodeAttrs nodeAttrs;
|
||||
storage.GetNodeAttrs(countryId, nodeAttrs);
|
||||
return IsEnoughSpaceForDownload(nodeAttrs.m_mwmSize - nodeAttrs.m_localMwmSize);
|
||||
return IsEnoughSpaceForDownload(nodeAttrs.m_mwmSize > nodeAttrs.m_localMwmSize
|
||||
? nodeAttrs.m_mwmSize - nodeAttrs.m_localMwmSize
|
||||
: 0);
|
||||
}
|
||||
|
||||
bool IsEnoughSpaceForUpdate(TCountryId const & countryId, Storage const & storage)
|
||||
|
|
Loading…
Add table
Reference in a new issue