diff options
author | Martin Kiewitz | 2010-08-12 21:33:23 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-08-12 21:33:23 +0000 |
commit | f1ad1f1738976fc33c0797f60eb89475bd70b39e (patch) | |
tree | 43869cf2b1cdb4c0f4ac3b0913903c1f9ee6098c | |
parent | 49c7ebf72ff9e01af78c760bffd2d26bc8ff0b6c (diff) | |
download | scummvm-rg350-f1ad1f1738976fc33c0797f60eb89475bd70b39e.tar.gz scummvm-rg350-f1ad1f1738976fc33c0797f60eb89475bd70b39e.tar.bz2 scummvm-rg350-f1ad1f1738976fc33c0797f60eb89475bd70b39e.zip |
SCI: "version" now shows cantBeHere selector
svn-id: r52045
-rw-r--r-- | engines/sci/console.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index fac819167b..7acbe56a12 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -446,6 +446,7 @@ bool Console::cmdGetVersion(int argc, const char **argv) { DebugPrintf("Resource volume version: %s\n", g_sci->getResMan()->getVolVersionDesc()); DebugPrintf("Resource map version: %s\n", g_sci->getResMan()->getMapVersionDesc()); DebugPrintf("Contains selector vocabulary (vocab.997): %s\n", hasVocab997 ? "yes" : "no"); + DebugPrintf("Has CantBeHere selector: %s\n", g_sci->getKernel()->_selectorCache.cantBeHere != -1 ? "yes" : "no"); DebugPrintf("Game version (VERSION file): %s\n", gameVersion.c_str()); DebugPrintf("\n"); |