diff -r 53ffb97b88ba lib/irrlicht/include/ITexture.h
--- a/lib/irrlicht/include/ITexture.h	Tue Sep 02 13:29:48 2008 +0200
+++ b/lib/irrlicht/include/ITexture.h	Tue Sep 02 13:40:09 2008 +0200
@@ -101,7 +101,7 @@
 	//! constructor
 	ITexture(const c8* name) : Name(name)
 	{
-		Name.make_lower();
+		// Name.make_lower();
 	}
 
 	//! destructor
diff -r 53ffb97b88ba lib/irrlicht/source/Irrlicht/CGUIEnvironment.cpp
--- a/lib/irrlicht/source/Irrlicht/CGUIEnvironment.cpp	Tue Sep 02 13:29:48 2008 +0200
+++ b/lib/irrlicht/source/Irrlicht/CGUIEnvironment.cpp	Tue Sep 02 13:40:09 2008 +0200
@@ -1578,7 +1578,7 @@
 	else
 		f.Filename = filename;
 
-	f.Filename.make_lower();
+	//	f.Filename.make_lower();
 
 	s32 index = Fonts.binary_search(f);
 	if (index != -1)
@@ -1693,7 +1693,7 @@
 	else
 		b.Filename = filename;
 
-	b.Filename.make_lower();
+	// b.Filename.make_lower();
 
 	s32 index = Banks.binary_search(b);
 	if (index != -1)
diff -r 53ffb97b88ba lib/irrlicht/source/Irrlicht/CMeshCache.cpp
--- a/lib/irrlicht/source/Irrlicht/CMeshCache.cpp	Tue Sep 02 13:29:48 2008 +0200
+++ b/lib/irrlicht/source/Irrlicht/CMeshCache.cpp	Tue Sep 02 13:40:09 2008 +0200
@@ -26,7 +26,7 @@
 	MeshEntry e;
 	e.Mesh = mesh;
 	e.Name = filename;
-	e.Name.make_lower();
+	// e.Name.make_lower();
 
 	Meshes.push_back(e);
 }
@@ -113,7 +113,7 @@
 {
 	MeshEntry e;
 	e.Name = filename;
-	e.Name.make_lower();
+	// e.Name.make_lower();
 	s32 id = Meshes.binary_search(e);
 	return (id != -1) ? Meshes[id].Mesh : 0;
 }
diff -r 53ffb97b88ba lib/irrlicht/source/Irrlicht/CSceneManager.cpp
--- a/lib/irrlicht/source/Irrlicht/CSceneManager.cpp	Tue Sep 02 13:29:48 2008 +0200
+++ b/lib/irrlicht/source/Irrlicht/CSceneManager.cpp	Tue Sep 02 13:40:09 2008 +0200
@@ -316,7 +316,7 @@
 	}
 
 	core::stringc name = filename;
-	name.make_lower();
+	// name.make_lower();
 	s32 count = MeshLoaderList.size();
 	for (s32 i=count-1; i>=0; --i)
 	{
@@ -356,7 +356,7 @@
 	if (msh)
 		return msh;
 
-	name.make_lower();
+	// name.make_lower();
 	s32 count = MeshLoaderList.size();
 	for (s32 i=count-1; i>=0; --i)
 	{
