diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/features.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/engine/features.cpp b/engines/sci/engine/features.cpp index 7d9b4f43fc..909fe972e6 100644 --- a/engines/sci/engine/features.cpp +++ b/engines/sci/engine/features.cpp @@ -573,6 +573,9 @@ MoveCountType GameFeatures::detectMoveCountType() { // SCI0/SCI01 games always increment move count if (getSciVersion() <= SCI_VERSION_01) { _moveCountType = kIncrementMoveCount; + } else if (getSciVersion() >= SCI_VERSION_1_1) { + // SCI1.1 and newer games always ignore move count + _moveCountType = kIgnoreMoveCount; } else { if (!autoDetectMoveCountType()) { error("Move count autodetection failed"); |