mirror of
https://github.com/OpenMW/openmw.git
synced 2025-11-08 17:46:40 +00:00
Ignore case for content file extensions
This commit is contained in:
parent
4b4025ed0f
commit
8391891a5b
1 changed files with 1 additions and 1 deletions
|
|
@ -107,7 +107,7 @@ namespace MWWorld
|
||||||
|
|
||||||
void load(const boost::filesystem::path& filepath, int& index)
|
void load(const boost::filesystem::path& filepath, int& index)
|
||||||
{
|
{
|
||||||
LoadersContainer::iterator it(mLoaders.find(filepath.extension().string()));
|
LoadersContainer::iterator it(mLoaders.find(Misc::StringUtils::lowerCase(filepath.extension().string())));
|
||||||
if (it != mLoaders.end())
|
if (it != mLoaders.end())
|
||||||
{
|
{
|
||||||
it->second->load(filepath, index);
|
it->second->load(filepath, index);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue