From cb1f9385825c4645dae1c233684699c6fcb6c0a7 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Wed, 6 Apr 2011 08:22:56 +0200 Subject: [PATCH] sf::Image is now *not* smooth by default (fixes issue #19) --- src/SFML/Graphics/Image.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/Graphics/Image.cpp b/src/SFML/Graphics/Image.cpp index 66134a65..4ec63578 100644 --- a/src/SFML/Graphics/Image.cpp +++ b/src/SFML/Graphics/Image.cpp @@ -45,7 +45,7 @@ myHeight (0), myTextureWidth (0), myTextureHeight (0), myTexture (0), -myIsSmooth (true), +myIsSmooth (false), myTextureUpdated(true), myArrayUpdated (true), myPixelsFlipped (false)