From 12e5a8fce617cfbb710967b28f7ef508e7e71e8f Mon Sep 17 00:00:00 2001 From: "spartanj@gmail.com" Date: Tue, 5 Jun 2012 03:23:35 -0300 Subject: [PATCH] ClampMode now applied correctly in textures. --- src/graphics/ctexture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/ctexture.cpp b/src/graphics/ctexture.cpp index 58a3ed856..169f2b26b 100755 --- a/src/graphics/ctexture.cpp +++ b/src/graphics/ctexture.cpp @@ -318,8 +318,8 @@ bool cTexture::LocalCopy() { void cTexture::ClampMode( const EE_CLAMP_MODE& clampmode ) { if ( mClampMode != clampmode ) { - ApplyClampMode(); mClampMode = clampmode; + ApplyClampMode(); } }