diff options
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r-- | engines/sci/console.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index a441568cc2..386216607d 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -119,7 +119,7 @@ bool Console::cmdGetVersion(int argc, const char **argv) { bool Console::cmdSelectors(int argc, const char **argv) { Common::StringList selectorNames; - if (!vocabulary_get_snames(_vm->getResMgr(), (_vm->getFlags() & GF_SCI0_OLD), selectorNames)) { + if (!vocab_get_snames(_vm->getResMgr(), (_vm->getFlags() & GF_SCI0_OLD), selectorNames)) { DebugPrintf("No selector name table found!\n"); return true; } @@ -139,7 +139,7 @@ bool Console::cmdSelectors(int argc, const char **argv) { bool Console::cmdKernelNames(int argc, const char **argv) { Common::StringList kernelNames; - vocabulary_get_knames(_vm->getResMgr(), kernelNames); + vocab_get_knames(_vm->getResMgr(), kernelNames); if (kernelNames.empty()) { DebugPrintf("No kernel name table found!\n"); @@ -290,7 +290,7 @@ bool Console::cmdDissectScript(int argc, const char **argv) { return true; } - if (!vocabulary_get_snames(_vm->getResMgr(), (_vm->getFlags() & GF_SCI0_OLD), selectorNames)) { + if (!vocab_get_snames(_vm->getResMgr(), (_vm->getFlags() & GF_SCI0_OLD), selectorNames)) { DebugPrintf("No selector name table found!\n"); return true; } |