ImFont: Reorder field initialization to match declaration order

This commit is contained in:
omar 2017-03-17 21:29:28 +01:00
parent 931bc61345
commit b84eac53d8
1 changed files with 6 additions and 6 deletions

View File

@ -1694,15 +1694,15 @@ void ImFont::Clear()
{
FontSize = 0.0f;
DisplayOffset = ImVec2(0.0f, 1.0f);
ConfigData = NULL;
ConfigDataCount = 0;
Ascent = Descent = 0.0f;
ContainerAtlas = NULL;
Glyphs.clear();
FallbackGlyph = NULL;
FallbackXAdvance = 0.0f;
IndexXAdvance.clear();
IndexLookup.clear();
FallbackGlyph = NULL;
FallbackXAdvance = 0.0f;
ConfigDataCount = 0;
ConfigData = NULL;
ContainerAtlas = NULL;
Ascent = Descent = 0.0f;
}
void ImFont::BuildLookupTable()