mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-13 19:06:44 +00:00
fixed case-problem in OpenCS script compiler
This commit is contained in:
parent
4047e3c928
commit
843493e90a
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ bool CSMWorld::ScriptContext::isId (const std::string& name) const
|
||||||
{
|
{
|
||||||
mIds = mData.getIds();
|
mIds = mData.getIds();
|
||||||
|
|
||||||
std::for_each (mIds.begin(), mIds.end(), &Misc::StringUtils::lowerCase);
|
std::for_each (mIds.begin(), mIds.end(), &Misc::StringUtils::toLower);
|
||||||
std::sort (mIds.begin(), mIds.end());
|
std::sort (mIds.begin(), mIds.end());
|
||||||
|
|
||||||
mIdsUpdated = true;
|
mIdsUpdated = true;
|
||||||
|
|
Loading…
Reference in a new issue