forked from mirror/openmw-tes3mp
Letter case fix for MWWorld::Globals
This commit is contained in:
parent
00bf87b561
commit
20723581a1
1 changed files with 2 additions and 2 deletions
|
@ -93,9 +93,9 @@ namespace MWWorld
|
||||||
{
|
{
|
||||||
ESM::Global global;
|
ESM::Global global;
|
||||||
global.load(reader);
|
global.load(reader);
|
||||||
|
Misc::StringUtils::toLower(global.mId);
|
||||||
|
|
||||||
Collection::iterator iter = mVariables.find (Misc::StringUtils::lowerCase (global.mId));
|
Collection::iterator iter = mVariables.find (global.mId);
|
||||||
|
|
||||||
if (iter!=mVariables.end())
|
if (iter!=mVariables.end())
|
||||||
iter->second = global;
|
iter->second = global;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue