diff options
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/sci/console.cpp | 2 | ||||
| -rw-r--r-- | engines/sci/engine/features.h | 6 | ||||
| -rw-r--r-- | engines/sci/sci.h | 6 | 
3 files changed, 7 insertions, 7 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()); diff --git a/engines/sci/engine/features.h b/engines/sci/engine/features.h index 77c2f0cff7..5b383746d8 100644 --- a/engines/sci/engine/features.h +++ b/engines/sci/engine/features.h @@ -31,6 +31,12 @@  namespace Sci { +enum MoveCountType { +	kMoveCountUninitialized, +	kIgnoreMoveCount, +	kIncrementMoveCount +}; +  class GameFeatures {  public:  	GameFeatures(SegManager *segMan, Kernel *kernel); diff --git a/engines/sci/sci.h b/engines/sci/sci.h index 43e9c88da9..4e6be667f1 100644 --- a/engines/sci/sci.h +++ b/engines/sci/sci.h @@ -118,12 +118,6 @@ enum SciVersion {  	SCI_VERSION_3 // LSL7, RAMA, Lighthouse  }; -enum MoveCountType { -	kMoveCountUninitialized, -	kIgnoreMoveCount, -	kIncrementMoveCount -}; -  /** Supported languages */  enum kLanguage {  	K_LANG_NONE = 0,  | 
