aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorsluicebox2019-04-07 18:16:43 -0700
committerFilippos Karapetis2019-04-09 20:50:28 +0300
commitbc2ab792614825f3a03290f2894f017f585e0e6d (patch)
tree8da95704412728f6b48a78bc2655292870a040e6 /engines/sci/engine
parent1e4c457e72182653daa486560e0d5b2a98d7b075 (diff)
downloadscummvm-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/engine')
-rw-r--r--engines/sci/engine/kparse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kparse.cpp b/engines/sci/engine/kparse.cpp
index d3bf2d72e9..08992cab46 100644
--- a/engines/sci/engine/kparse.cpp
+++ b/engines/sci/engine/kparse.cpp
@@ -169,7 +169,7 @@ reg_t kSetSynonyms(EngineState *s, int argc, reg_t *argv) {
Vocabulary *voc = g_sci->getVocabulary();
// Only SCI0-SCI1 EGA games had a parser. In newer versions, this is a stub
- if (getSciVersion() > SCI_VERSION_1_EGA_ONLY)
+ if (!g_sci->hasParser())
return s->r_acc;
voc->clearSynonyms();