From d5ced60dece9cfd5a6f9d2a1b2a97bc4f6527cf3 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Sun, 7 Aug 2011 19:33:26 +0200 Subject: [PATCH] Fixed font's textures not smoothed --- src/SFML/Graphics/Texture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/Graphics/Texture.cpp b/src/SFML/Graphics/Texture.cpp index 6bb76912a..fbd9d602d 100644 --- a/src/SFML/Graphics/Texture.cpp +++ b/src/SFML/Graphics/Texture.cpp @@ -58,7 +58,7 @@ myHeight (0), myTextureWidth (0), myTextureHeight(0), myTexture (0), -myIsSmooth (false), +myIsSmooth (copy.myIsSmooth), myPixelsFlipped(false) { LoadFromImage(copy.CopyToImage());