Fix ordering warning and init error for clang
The glyphs and bb pointers were reversed.
This commit is contained in:
parent
36fba5bd7f
commit
df75167e14
|
@ -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 )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue