SCI: Remove unused argument to said

This commit is contained in:
Willem Jan Palenstijn 2011-03-08 22:50:10 +01:00
parent b0cd614fd5
commit eece58df7f
5 changed files with 5 additions and 9 deletions

View file

@ -1436,7 +1436,7 @@ bool Console::cmdSaid(int argc, const char **argv) {
_engine->getVocabulary()->dumpParseTree();
_engine->getVocabulary()->parserIsValid = true;
int ret = said(_engine->_gamestate, (byte*)spec, true);
int ret = said((byte*)spec, true);
DebugPrintf("kSaid: %s\n", (ret == SAID_NO_MATCH ? "No match" : "Match"));
}