forked from mirror/openmw-tes3mp
fixed another case folding problem regarding OpenCS resources handling
This commit is contained in:
parent
e755f692cc
commit
58b6e757e3
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ CSMWorld::Resources::Resources (const std::string& baseDirectory, UniversalId::T
|
||||||
|
|
||||||
std::string file = iter->substr (baseSize+1);
|
std::string file = iter->substr (baseSize+1);
|
||||||
mFiles.push_back (file);
|
mFiles.push_back (file);
|
||||||
mIndex.insert (std::make_pair (file, static_cast<int> (mFiles.size())-1));
|
mIndex.insert (std::make_pair (
|
||||||
|
Misc::StringUtils::lowerCase (file), static_cast<int> (mFiles.size())-1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue