Fixed incorrect case of unzipped files.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7285 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2011-01-05 23:07:07 +00:00
parent de50274e96
commit fcbd7a4614

View File

@@ -56,7 +56,7 @@ bool extract_zip(const std::string &from, const std::string &to)
{
//Add the zip to the file system
IFileSystem *file_system = irr_driver->getDevice()->getFileSystem();
file_system->addZipFileArchive(from.c_str());
file_system->addZipFileArchive(from.c_str(), /*ignoreCase*/false);
// Get the recently added archive, which is necessary to get a
// list of file in the zip archive.