From 3a7f85971fd00e598eca357010b18314d890e28b Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Fri, 6 Jul 2018 07:06:05 +0200 Subject: MOHAWK: MYST: Add support for the localized 25th games --- engines/mohawk/mohawk.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'engines/mohawk/mohawk.h') diff --git a/engines/mohawk/mohawk.h b/engines/mohawk/mohawk.h index ad4ff7b3f0..2a2d25b771 100644 --- a/engines/mohawk/mohawk.h +++ b/engines/mohawk/mohawk.h @@ -58,11 +58,12 @@ enum MohawkGameType { }; enum MohawkGameFeatures { - GF_ME = (1 << 0), // Myst Masterpiece Edition - GF_25TH = (1 << 1), // Myst and Riven 25th Anniversary - GF_DVD = (1 << 2), - GF_DEMO = (1 << 3), - GF_LB_10 = (1 << 4) // very early Living Books 1.0 games + GF_ME = (1 << 0), // Myst Masterpiece Edition + GF_25TH = (1 << 1), // Myst and Riven 25th Anniversary + GF_DVD = (1 << 2), + GF_DEMO = (1 << 3), + GF_LB_10 = (1 << 4), // very early Living Books 1.0 games + GF_LANGUAGE_FILES = (1 << 5) // Myst and Riven versions using language override files }; struct MohawkGameDescription; @@ -87,6 +88,7 @@ public: Common::Platform getPlatform() const; uint8 getGameType() const; Common::Language getLanguage() const; + Common::String getDatafileLanguageName(const char *prefix) const; bool hasFeature(EngineFeature f) const override; -- cgit v1.2.3