mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-06 08:15:34 +00:00
iterate in reverse order
This commit is contained in:
parent
3bf641d3ce
commit
630ec36d1f
1 changed files with 3 additions and 3 deletions
|
@ -100,10 +100,10 @@ namespace VFS
|
|||
{
|
||||
std::string normalized = name;
|
||||
normalize_path(normalized, mStrict);
|
||||
for(const auto archive : mArchives)
|
||||
for(auto it = mArchives.rbegin(); it != mArchives.rend(); ++it)
|
||||
{
|
||||
if(archive->contains(normalized, mStrict ? &strict_normalize_char : &nonstrict_normalize_char))
|
||||
return archive->getDescription();
|
||||
if((*it)->contains(normalized, mStrict ? &strict_normalize_char : &nonstrict_normalize_char))
|
||||
return (*it)->getDescription();
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue