diff -r 17857de0e53c lib/irrlicht/include/ITexture.h --- a/lib/irrlicht/include/ITexture.h Wed Sep 23 02:39:16 2009 +0200 +++ b/lib/irrlicht/include/ITexture.h Wed Sep 23 02:42:23 2009 +0200 @@ -104,7 +104,7 @@ public: //! constructor ITexture(const io::path& name) : Name(name) { - Name.make_lower(); + // Name.make_lower(); } //! Lock function. diff -r 17857de0e53c lib/irrlicht/source/Irrlicht/CGUIEnvironment.cpp --- a/lib/irrlicht/source/Irrlicht/CGUIEnvironment.cpp Wed Sep 23 02:39:16 2009 +0200 +++ b/lib/irrlicht/source/Irrlicht/CGUIEnvironment.cpp Wed Sep 23 02:42:23 2009 +0200 @@ -1567,7 +1567,7 @@ IGUIFont* CGUIEnvironment::getFont(const IGUIFont* ifont=0; f.Filename = filename; - f.Filename.make_lower(); + //f.Filename.make_lower(); s32 index = Fonts.binary_search(f); if (index != -1) @@ -1675,7 +1675,7 @@ IGUISpriteBank* CGUIEnvironment::getSpri SSpriteBank b; b.Filename = filename; - b.Filename.make_lower(); + //b.Filename.make_lower(); s32 index = Banks.binary_search(b); if (index != -1) diff -r 17857de0e53c lib/irrlicht/source/Irrlicht/CSceneManager.cpp --- a/lib/irrlicht/source/Irrlicht/CSceneManager.cpp Wed Sep 23 02:39:16 2009 +0200 +++ b/lib/irrlicht/source/Irrlicht/CSceneManager.cpp Wed Sep 23 02:42:23 2009 +0200 @@ -390,7 +390,7 @@ IAnimatedMesh* CSceneManager::getMesh(io if (msh) return msh; - name.make_lower(); + //name.make_lower(); s32 count = MeshLoaderList.size(); for (s32 i=count-1; i>=0; --i) {