diff options
Diffstat (limited to 'gui/debugger.cpp')
-rw-r--r-- | gui/debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp index ce4661e9cb..fb03b57892 100644 --- a/gui/debugger.cpp +++ b/gui/debugger.cpp @@ -470,7 +470,7 @@ bool Debugger::tabComplete(const char *input, Common::String &completion) const CommandsMap::const_iterator i, e = _cmds.end(); for (i = _cmds.begin(); i != e; ++i) { - if (i->_key.hasPrefix(input)) { + if (i->_key.hasPrefixIgnoreCase(input)) { uint commandlen = i->_key.size(); if (commandlen == inputlen) { // perfect match, so no tab completion possible return false; |