From ff7e490593d05b4613f68f7a2cf2de4e28e921c6 Mon Sep 17 00:00:00 2001 From: Lars Skovlund Date: Thu, 27 Dec 2018 08:35:07 +0100 Subject: [PATCH] SCI32: Display plane id base in version console command --- engines/sci/console.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 91c5d01e87ac..99fae41d0550 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");