Fixed the selector console command (don't change the selector name to lowercase...)

svn-id: r49949
This commit is contained in:
Filippos Karapetis 2010-06-17 20:49:33 +00:00
parent 27741ee970
commit c8dfa255a3

View File

@ -488,7 +488,6 @@ bool Console::cmdSelector(int argc, const char **argv) {
}
Common::String name = argv[1];
name.toLowercase();
int seeker = _engine->getKernel()->findSelector(name.c_str());
if (seeker >= 0) {
DebugPrintf("Selector %s found at %03x (%d)\n", name.c_str(), seeker, seeker);