Fix vector's out of range in drawPathTextImpl.

This commit is contained in:
vng 2011-01-13 00:16:49 +02:00 committed by Alex Zolotarev
parent da761273ed
commit 9be6c739ac

View file

@ -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];