From 99d4ec355182861ea0e27e1247772eca2b8a98a1 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Sun, 23 Jun 2013 22:41:58 +0200 Subject: [PATCH] Fixed white pixel showing on first character of sf::Text (#414) --- src/SFML/Graphics/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/Graphics/Font.cpp b/src/SFML/Graphics/Font.cpp index bc9cf368..1ad882da 100644 --- a/src/SFML/Graphics/Font.cpp +++ b/src/SFML/Graphics/Font.cpp @@ -575,7 +575,7 @@ bool Font::setCurrentSize(unsigned int characterSize) const //////////////////////////////////////////////////////////// Font::Page::Page() : -nextRow(2) +nextRow(3) { // Make sure that the texture is initialized by default sf::Image image;