forked from organicmaps/organicmaps
Fixed crash in user marks caching.
This commit is contained in:
parent
19b006d9c8
commit
598acb74d9
1 changed files with 5 additions and 2 deletions
|
@ -109,7 +109,8 @@ void CacheUserMarks(TileKey const & tileKey, ref_ptr<dp::TextureManager> texture
|
|||
for (auto const id : marksId)
|
||||
{
|
||||
auto const it = renderParams.find(id);
|
||||
ASSERT(it != renderParams.end(), ());
|
||||
if (it == renderParams.end())
|
||||
continue;
|
||||
|
||||
UserMarkRenderParams & renderInfo = *it->second.get();
|
||||
if (!renderInfo.m_isVisible)
|
||||
|
@ -339,7 +340,9 @@ void CacheUserLines(TileKey const & tileKey, ref_ptr<dp::TextureManager> texture
|
|||
for (auto id : linesId)
|
||||
{
|
||||
auto const it = renderParams.find(id);
|
||||
ASSERT(it != renderParams.end(), ());
|
||||
if (it == renderParams.end())
|
||||
continue;
|
||||
|
||||
UserLineRenderParams const & renderInfo = *it->second.get();
|
||||
|
||||
m2::RectD const tileRect = tileKey.GetGlobalRect();
|
||||
|
|
Loading…
Add table
Reference in a new issue