Fixed warning about a not initialized variable.
This commit is contained in:
parent
0baa580b8d
commit
0bac4a1e07
|
@ -56,8 +56,8 @@ bool STROKE_FONT::LoadNewStrokeFont( const char* const aNewStrokeFont[], int aNe
|
||||||
for( int j = 0; j < aNewStrokeFontSize; j++ )
|
for( int j = 0; j < aNewStrokeFontSize; j++ )
|
||||||
{
|
{
|
||||||
Glyph glyph;
|
Glyph glyph;
|
||||||
double glyphStartX;
|
double glyphStartX = 0.0;
|
||||||
double glyphEndX;
|
double glyphEndX = 0.0;
|
||||||
VECTOR2D glyphBoundingX;
|
VECTOR2D glyphBoundingX;
|
||||||
|
|
||||||
std::deque<VECTOR2D> pointList;
|
std::deque<VECTOR2D> pointList;
|
||||||
|
|
Loading…
Reference in New Issue