Fixed warning about a not initialized variable.

This commit is contained in:
Maciej Suminski 2013-06-25 16:54:30 +02:00
parent 0baa580b8d
commit 0bac4a1e07
1 changed files with 2 additions and 2 deletions

View File

@ -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;