diff options
author | Lars Skovlund | 2018-12-27 08:35:07 +0100 |
---|---|---|
committer | Filippos Karapetis | 2018-12-28 11:55:32 +0200 |
commit | ff7e490593d05b4613f68f7a2cf2de4e28e921c6 (patch) | |
tree | 3465ce7050d93e2b782dda2dbfe11e7d8854c3f4 | |
parent | 4b6e0e0e7de7589f7e4ce09b7f4c77da45e4477a (diff) | |
download | scummvm-rg350-ff7e490593d05b4613f68f7a2cf2de4e28e921c6.tar.gz scummvm-rg350-ff7e490593d05b4613f68f7a2cf2de4e28e921c6.tar.bz2 scummvm-rg350-ff7e490593d05b4613f68f7a2cf2de4e28e921c6.zip |
SCI32: Display plane id base in version console command
-rw-r--r-- | engines/sci/console.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 91c5d01e87..99fae41d05 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -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"); |