Fix ordering warning and init error for clang

The glyphs and bb pointers were reversed.
This commit is contained in:
Seth Hillbrand 2019-12-06 04:33:50 -08:00
parent 36fba5bd7f
commit df75167e14
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ std::vector<BOX2D>* g_newStrokeFontGlyphBoundingBoxes; ///< Bounding boxes of
STROKE_FONT::STROKE_FONT( GAL* aGal ) :
m_gal( aGal ), m_glyphBoundingBoxes( {} ), m_glyphs( nullptr )
m_gal( aGal ), m_glyphs( nullptr ), m_glyphBoundingBoxes( nullptr )
{
}