diff options
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r-- | engines/sci/console.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 8dc95439ba..0ac0fd9aa4 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -99,8 +99,7 @@ bool Console::cmdGetVersion(int argc, const char **argv) { DebugPrintf("Resource file version: %s\n", sci_version_types[_vm->getResMgr()->_sciVersion]); - DebugPrintf("Emulated interpreter version: %d.%03d.%03d\n", - SCI_VERSION_MAJOR(ver), SCI_VERSION_MINOR(ver), SCI_VERSION_PATCHLEVEL(ver)); + DebugPrintf("Emulated interpreter version: %s\n", versionNames[ver]); return true; } |