aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sci.h4
-rw-r--r--engines/sci/vocabulary.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index f8cf4289e8..1fa9221fa7 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -75,8 +75,8 @@ enum SciGameVersions {
SCI_VERSION_01_VGA = 3,
SCI_VERSION_01_VGA_ODD = 4,
SCI_VERSION_1 = 5,
- SCI_VERSION_1_1 = 7,
- SCI_VERSION_32 = 8
+ SCI_VERSION_1_1 = 6,
+ SCI_VERSION_32 = 7
};
extern const char *versionNames[8];
diff --git a/engines/sci/vocabulary.cpp b/engines/sci/vocabulary.cpp
index 144ec4cc73..dd56cdf88a 100644
--- a/engines/sci/vocabulary.cpp
+++ b/engines/sci/vocabulary.cpp
@@ -472,7 +472,7 @@ int Kernel::findSelector(const char *selectorName) const {
return pos;
}
- warning("Could not map '%s' to any selector", selectorName);
+ debugC(2, kDebugLevelVM, "Could not map '%s' to any selector\n", selectorName);
return -1;
}