From 550ef632e3bad287696b7dc1a630a0cca551b452 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Sun, 7 Aug 2011 10:22:42 +0200 Subject: [PATCH] Fixed compile error in sf::Font --- include/SFML/Graphics/Font.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SFML/Graphics/Font.hpp b/include/SFML/Graphics/Font.hpp index d2e37315..d846f5ac 100644 --- a/include/SFML/Graphics/Font.hpp +++ b/include/SFML/Graphics/Font.hpp @@ -240,7 +240,7 @@ private : Page(); 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 std::vector Rows; ///< List containing the position of all the existing rows };