Renamed TextStyle_None to TextStyle_Regular

Former-commit-id: 3bd44c785f8c6f011bcade1242b051d8662287d2
This commit is contained in:
Lynix
2015-01-16 12:45:29 +01:00
parent 9d83f3f474
commit bdaa4f2838
3 changed files with 3 additions and 3 deletions

View File

@@ -203,7 +203,7 @@ const NzFont::SizeInfo& NzFont::GetSizeInfo(unsigned int characterSize) const
sizeInfo.underlineThickness = m_data->QueryUnderlineThickness(characterSize);
NzFontGlyph glyph;
if (m_data->ExtractGlyph(characterSize, ' ', nzTextStyle_None, &glyph))
if (m_data->ExtractGlyph(characterSize, ' ', nzTextStyle_Regular, &glyph))
sizeInfo.spaceAdvance = glyph.advance;
else
{