forked from mirror/openmw-tes3mp
Broken lower casing fix (Fixes #3068)
This commit is contained in:
parent
2f9b404094
commit
39feb547a0
1 changed files with 1 additions and 2 deletions
|
@ -35,8 +35,7 @@ namespace Interpreter{
|
|||
if(text[i] == eschar)
|
||||
{
|
||||
retval << text.substr(start, i - start);
|
||||
std::string temp = text.substr(i+1, 100);
|
||||
Misc::StringUtils::lowerCase(temp);
|
||||
std::string temp = Misc::StringUtils::lowerCase(text.substr(i+1, 100));
|
||||
|
||||
bool found = false;
|
||||
try
|
||||
|
|
Loading…
Reference in a new issue