forked from organicmaps/organicmaps-tmp
Adding comment at IsEnoughSpaceForDownload() method.
This commit is contained in:
parent
aa75d98f6d
commit
c0099b86ce
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,9 @@ bool IsEnoughSpaceForDownload(TCountryId const & countryId, Storage const & stor
|
|||
{
|
||||
NodeAttrs nodeAttrs;
|
||||
storage.GetNodeAttrs(countryId, nodeAttrs);
|
||||
// The type of nodeAttrs.m_mwmSize and nodeAttrs.m_localMwmSize is TMwmSize (uint64_t).
|
||||
// The condition below is necessary to prevent passing a big positive number as the first
|
||||
// parameter of IsEnoughSpaceForDownload().
|
||||
return IsEnoughSpaceForDownload(nodeAttrs.m_mwmSize > nodeAttrs.m_localMwmSize
|
||||
? nodeAttrs.m_mwmSize - nodeAttrs.m_localMwmSize
|
||||
: 0, storage.GetMaxMwmSizeBytes());
|
||||
|
|
Loading…
Add table
Reference in a new issue