Broken lower casing fix (Fixes #3068)

openmw-38
scrawl 9 years ago
parent 2f9b404094
commit 39feb547a0

@ -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…
Cancel
Save