diff options
| author | sluicebox | 2019-04-07 18:16:43 -0700 |
|---|---|---|
| committer | Filippos Karapetis | 2019-04-09 20:50:28 +0300 |
| commit | bc2ab792614825f3a03290f2894f017f585e0e6d (patch) | |
| tree | 8da95704412728f6b48a78bc2655292870a040e6 /engines/sci/parser | |
| parent | 1e4c457e72182653daa486560e0d5b2a98d7b075 (diff) | |
| download | scummvm-rg350-bc2ab792614825f3a03290f2894f017f585e0e6d.tar.gz scummvm-rg350-bc2ab792614825f3a03290f2894f017f585e0e6d.tar.bz2 scummvm-rg350-bc2ab792614825f3a03290f2894f017f585e0e6d.zip | |
SCI: Add parser support for LSL3, SQ3 German Amiga
Add parser support for multilingual Amiga versions that were released
in 1991 and are SCI_VERSION_1_MIDDLE
Diffstat (limited to 'engines/sci/parser')
| -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 2642b6bd6e..483fae277c 100644 --- a/engines/sci/parser/vocabulary.cpp +++ b/engines/sci/parser/vocabulary.cpp @@ -60,7 +60,7 @@ Vocabulary::Vocabulary(ResourceManager *resMan, bool foreign) : _resMan(resMan), _resourceIdBranches += 10; } - if (getSciVersion() <= SCI_VERSION_1_EGA_ONLY && loadParserWords()) { + if (g_sci->hasParser() && loadParserWords()) { loadSuffixes(); if (loadBranches()) // Now build a GNF grammar out of this |
