Bugfix: textures from the data/textures directory were preferred over track- and

kart-specific textures (unless they were listed in a materials.dat file).


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@3119 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2009-02-11 05:15:54 +00:00
parent 1620ad012e
commit 99ed2caf66

View File

@ -244,11 +244,9 @@ bool FileManager::findFile(std::string& full_path,
struct stat mystat;
#endif
// FIXME: this should become a reverse iterator.
for(std::vector<std::string>::const_iterator i = search_path.begin();
i != search_path.end(); ++i)
for(std::vector<std::string>::const_reverse_iterator i = search_path.rbegin();
i != search_path.rend(); ++i)
{
//full_path=m_root_dir + "/" + *i + "/" + fname;
full_path = *i + "/" + fname;
#ifdef HAVE_IRRLICHT
if(m_file_system->existFile(full_path.c_str())) return true;