Skip to content

Commit

Permalink
SCI32: Display plane id base in version console command
Browse files Browse the repository at this point in the history
  • Loading branch information
lskovlun authored and bluegr committed Dec 28, 2018
1 parent 4b6e0e0 commit ff7e490
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions engines/sci/console.cpp
Expand Up @@ -488,6 +488,9 @@ bool Console::cmdGetVersion(int argc, const char **argv) {
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");
if (getSciVersion() >= SCI_VERSION_2) {
debugPrintf("Plane id base: %d\n", g_sci->_features->detectPlaneIdBase());
}
debugPrintf("Game version (VERSION file): %s\n", gameVersion.c_str());
debugPrintf("\n");

Expand Down

0 comments on commit ff7e490

Please sign in to comment.