aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorMatthew Hoops2010-07-28 14:34:32 +0000
committerMatthew Hoops2010-07-28 14:34:32 +0000
commit00ff92e9e0b112a3016f93c837d918a7b9163b47 (patch)
treec5bd7f3796cae36cdd4bb3cd6b84602f67f80966 /engines/sci
parent67f4784f32f455c1a217ec48facc042e39712c9b (diff)
downloadscummvm-rg350-00ff92e9e0b112a3016f93c837d918a7b9163b47.tar.gz
scummvm-rg350-00ff92e9e0b112a3016f93c837d918a7b9163b47.tar.bz2
scummvm-rg350-00ff92e9e0b112a3016f93c837d918a7b9163b47.zip
SCI: Remove SCI01 vocab warning, this behavior is normal
svn-id: r51421
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/parser/vocabulary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/parser/vocabulary.cpp b/engines/sci/parser/vocabulary.cpp
index 0adcb4a89f..20436d5b30 100644
--- a/engines/sci/parser/vocabulary.cpp
+++ b/engines/sci/parser/vocabulary.cpp
@@ -50,12 +50,12 @@ Vocabulary::Vocabulary(ResourceManager *resMan, bool foreign) : _resMan(resMan),
_resourceIdSuffixes = VOCAB_RESOURCE_SCI0_SUFFIX_VOCAB;
_resourceIdBranches = VOCAB_RESOURCE_SCI0_PARSE_TREE_BRANCHES;
} else {
- warning("Could not find a main vocabulary, trying SCI01");
_vocabVersion = kVocabularySCI1;
_resourceIdWords = VOCAB_RESOURCE_SCI1_MAIN_VOCAB;
_resourceIdSuffixes = VOCAB_RESOURCE_SCI1_SUFFIX_VOCAB;
_resourceIdBranches = VOCAB_RESOURCE_SCI1_PARSE_TREE_BRANCHES;
}
+
if (_foreign) {
_resourceIdWords += 10;
_resourceIdSuffixes += 10;