From 846ea614670e57bd02ed6e0e3c22da41fe7b85ab Mon Sep 17 00:00:00 2001 From: hybrid Date: Wed, 30 Jul 2008 16:14:03 +0000 Subject: [PATCH] Removed WIP code. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1428 dfc29bdd-3216-0410-991c-e03cc46cb475 --- source/Irrlicht/CB3DMeshFileLoader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Irrlicht/CB3DMeshFileLoader.cpp b/source/Irrlicht/CB3DMeshFileLoader.cpp index 3aeb8b25..50486f32 100644 --- a/source/Irrlicht/CB3DMeshFileLoader.cpp +++ b/source/Irrlicht/CB3DMeshFileLoader.cpp @@ -756,9 +756,9 @@ bool CB3DMeshFileLoader::readChunkBRUS() { B3dMaterial.Material.setTexture(i, B3dMaterial.Textures[i]->Texture); if (B3dMaterial.Textures[i]->Flags & 0x10) // Clamp U - B3dMaterial.Material.TextureLayer[i].TextureWrapU=video::ETC_CLAMP; + B3dMaterial.Material.TextureLayer[i].TextureWrap=video::ETC_CLAMP; if (B3dMaterial.Textures[i]->Flags & 0x20) // Clamp V, TODO: Needs another attribute - B3dMaterial.Material.TextureLayer[i].TextureWrapV=video::ETC_CLAMP; + B3dMaterial.Material.TextureLayer[i].TextureWrap=video::ETC_CLAMP; } }