Commit 0bac4a1e authored by Maciej Suminski's avatar Maciej Suminski

Fixed warning about a not initialized variable.

parent 0baa580b
...@@ -56,8 +56,8 @@ bool STROKE_FONT::LoadNewStrokeFont( const char* const aNewStrokeFont[], int aNe ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment