diff options
author | Matthew Hoops | 2010-07-28 14:34:32 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-07-28 14:34:32 +0000 |
commit | 00ff92e9e0b112a3016f93c837d918a7b9163b47 (patch) | |
tree | c5bd7f3796cae36cdd4bb3cd6b84602f67f80966 /engines/sci | |
parent | 67f4784f32f455c1a217ec48facc042e39712c9b (diff) | |
download | scummvm-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.cpp | 2 |
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; |