forked from organicmaps/organicmaps
Fix vector's out of range in drawPathTextImpl.
This commit is contained in:
parent
da761273ed
commit
9be6c739ac
1 changed files with 2 additions and 5 deletions
|
@ -762,11 +762,8 @@ namespace yg
|
|||
|
||||
// find first visible glyph
|
||||
size_t i = 0;
|
||||
while (offset < 0)
|
||||
{
|
||||
offset += glyphs[i]->m_xAdvance;
|
||||
++i;
|
||||
}
|
||||
while (offset < 0 && i < count)
|
||||
offset += glyphs[i++]->m_xAdvance;
|
||||
|
||||
size_t ind = 0;
|
||||
m2::PointD ptOrg = arrPath[0];
|
||||
|
|
Loading…
Add table
Reference in a new issue