diff options
author | Eugene Sandulenko | 2016-02-02 20:05:14 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-02-14 17:12:57 +0100 |
commit | 0a57ac4fc933d6dc3d16e1fe008a80fd429c08ed (patch) | |
tree | f5c0e6b7803f8647e9ea338db6700b774a345ef2 /engines/wage | |
parent | 6e3cd0bcb27c82dd042c191ff65f211cfc136094 (diff) | |
download | scummvm-rg350-0a57ac4fc933d6dc3d16e1fe008a80fd429c08ed.tar.gz scummvm-rg350-0a57ac4fc933d6dc3d16e1fe008a80fd429c08ed.tar.bz2 scummvm-rg350-0a57ac4fc933d6dc3d16e1fe008a80fd429c08ed.zip |
WAGE: Remove redundant operation
Diffstat (limited to 'engines/wage')
-rw-r--r-- | engines/wage/script.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/wage/script.cpp b/engines/wage/script.cpp index 1ee669af18..2c23a46d69 100644 --- a/engines/wage/script.cpp +++ b/engines/wage/script.cpp @@ -163,7 +163,6 @@ bool Script::execute(World *world, int loopCount, Common::String *inputText, Des if (globalHandled) _handled = true; } else if (!input.empty()) { - input.toLowercase(); if (input.contains("north")) { _handled = _engine->handleMoveCommand(NORTH, "north"); } else if (input.contains("east")) { |