Fixed compile error in sf::Font

This commit is contained in:
Laurent Gomila 2011-08-07 10:22:42 +02:00
parent b7184640d8
commit 550ef632e3

View File

@ -240,7 +240,7 @@ private :
Page(); Page();
GlyphTable Glyphs; ///< Table mapping code points to their corresponding glyph GlyphTable Glyphs; ///< Table mapping code points to their corresponding glyph
Texture Texture; ///< Texture containing the pixels of the glyphs sf::Texture Texture; ///< Texture containing the pixels of the glyphs
unsigned int NextRow; ///< Y position of the next new row in the texture unsigned int NextRow; ///< Y position of the next new row in the texture
std::vector<Row> Rows; ///< List containing the position of all the existing rows std::vector<Row> Rows; ///< List containing the position of all the existing rows
}; };