mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
Dialogue filter: search script variables case-insensitively
This commit is contained in:
parent
cac68c9e87
commit
ed9a9904b4
@ -169,7 +169,7 @@ bool MWDialogue::Filter::testSelectStructNumeric (const SelectWrapper& select) c
|
|||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
for (; i<static_cast<int> (script->mVarNames.size()); ++i)
|
for (; i<static_cast<int> (script->mVarNames.size()); ++i)
|
||||||
if (script->mVarNames[i]==name)
|
if (Misc::StringUtils::lowerCase(script->mVarNames[i]) == name)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (i>=static_cast<int> (script->mVarNames.size()))
|
if (i>=static_cast<int> (script->mVarNames.size()))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user