aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/features.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/engine/features.cpp')
-rw-r--r--engines/sci/engine/features.cpp3
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");