aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.h
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/sci.h
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/sci.h')
-rw-r--r--engines/sci/sci.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index 2113ec2c43..fc218ee3b2 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -228,7 +228,7 @@ enum SciVersion {
SCI_VERSION_01, // KQ1 and multilingual games (S.old.*)
SCI_VERSION_1_EGA_ONLY, // SCI 1 EGA with parser (i.e. QFG2 only)
SCI_VERSION_1_EARLY, // KQ5 floppy, SQ4 floppy, XMAS card 1990, Fairy tales, Jones floppy
- SCI_VERSION_1_MIDDLE, // LSL1, Jones CD
+ SCI_VERSION_1_MIDDLE, // LSL1, Jones CD, LSL3 & SQ3 multilingual Amiga
SCI_VERSION_1_LATE, // Dr. Brain 1, EcoQuest 1, Longbow, PQ3, SQ1, LSL5, KQ5 CD
SCI_VERSION_1_1, // Dr. Brain 2, EcoQuest 1 CD, EcoQuest 2, KQ6, QFG3, SQ4CD, XMAS 1992 and many more
SCI_VERSION_2, // GK1, PQ4 floppy, QFG4 floppy
@@ -283,6 +283,7 @@ public:
/** Returns true if the game's original platform is big-endian. */
bool isBE() const;
+ bool hasParser() const;
bool hasMacIconBar() const;
inline ResourceManager *getResMan() const { return _resMan; }