aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.cpp
diff options
context:
space:
mode:
authorMax Horn2009-02-28 22:19:22 +0000
committerMax Horn2009-02-28 22:19:22 +0000
commitd7b06b7d4267c0ea6ff537455f940deed303eefb (patch)
tree9c255c0407f2dec30eaf3ff2bdef95c34de26e2b /engines/sci/console.cpp
parente1599798693eedc88e7fa2545e0976d89d9fa736 (diff)
downloadscummvm-rg350-d7b06b7d4267c0ea6ff537455f940deed303eefb.tar.gz
scummvm-rg350-d7b06b7d4267c0ea6ff537455f940deed303eefb.tar.bz2
scummvm-rg350-d7b06b7d4267c0ea6ff537455f940deed303eefb.zip
SCI: Renamed ResourceManager::sci_version to _sciVersion, to avoid var shadowing warnings; some other tweaks
svn-id: r38984
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r--engines/sci/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 558121f133..31fac56bae 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -45,7 +45,7 @@ Console::~Console() {
bool Console::cmdGetVersion(int argc, const char **argv) {
int ver = _vm->getVersion();
- DebugPrintf("Resource file version: %s\n", sci_version_types[_vm->getResMgr()->sci_version]);
+ 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));