aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-06-10 07:48:32 +0000
committerFilippos Karapetis2010-06-10 07:48:32 +0000
commit50c1f4e545dde784341eebf6eb8cd6d3ce0751b7 (patch)
tree5600a3e14ec329afaff300b2809c0b0f9693a081 /engines/sci/console.cpp
parentabc5f97608952d4d1f43c736ecd31f23d0aecb8c (diff)
downloadscummvm-rg350-50c1f4e545dde784341eebf6eb8cd6d3ce0751b7.tar.gz
scummvm-rg350-50c1f4e545dde784341eebf6eb8cd6d3ce0751b7.tar.bz2
scummvm-rg350-50c1f4e545dde784341eebf6eb8cd6d3ce0751b7.zip
Moved the MoveCountType enum above the GameFeatures class, as it's the only class using it
svn-id: r49561
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 9f1d03df25..7246bef586 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -434,7 +434,7 @@ bool Console::cmdGetVersion(int argc, const char **argv) {
DebugPrintf("Sound type: %s\n", getSciVersionDesc(_engine->_features->detectDoSoundType()));
DebugPrintf("Graphics functions type: %s\n", getSciVersionDesc(_engine->_features->detectGfxFunctionsType()));
DebugPrintf("Lofs type: %s\n", getSciVersionDesc(_engine->_features->detectLofsType()));
- DebugPrintf("Move count type: %s\n", (_engine->_features->detectMoveCountType() == kIncrementMoveCount) ? "increment" : "ignore");
+ DebugPrintf("Move count type: %s\n", (_engine->_features->handleMoveCount()) ? "increment" : "ignore");
DebugPrintf("SetCursor type: %s\n", getSciVersionDesc(_engine->_features->detectSetCursorType()));
DebugPrintf("View type: %s\n", viewTypeDesc[g_sci->getResMan()->getViewType()]);
DebugPrintf("Resource volume version: %s\n", g_sci->getResMan()->getVolVersionDesc());