Fixed: Glyph size step not taken into account.

--HG--
branch : develop
This commit is contained in:
Nimetu 2019-01-05 21:10:14 +02:00
parent c7d65c7063
commit ef1977330b

View file

@ -446,7 +446,7 @@ CTextureFont::SGlyphInfo* CTextureFont::findLetterGlyph(SLetterInfo *letter, boo
uint bitmapFontSize = max((sint)_MinGlyphSize, min((sint)_MaxGlyphSize, letter->Size));
if (_GlyphSizeStep > 1 && bitmapFontSize > _GlyphSizeStepMin)
{
uint size = (bitmapFontSize / _GlyphSizeStep) * _GlyphSizeStep;
bitmapFontSize = (bitmapFontSize / _GlyphSizeStep) * _GlyphSizeStep;
}
// CacheVersion not checked, all glyphs in cache must be rendered on texture