diff options
author | rootfather | 2016-05-09 09:43:27 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | b621fd7762ee520b29f43160068d003148d7f14c (patch) | |
tree | 542fd8e16e2dd6fa9deebe2cfecb2e912233eb34 | |
parent | fc4f6087acfcfa08c490206d0f719adcc22f4388 (diff) | |
download | scummvm-rg350-b621fd7762ee520b29f43160068d003148d7f14c.tar.gz scummvm-rg350-b621fd7762ee520b29f43160068d003148d7f14c.tar.bz2 scummvm-rg350-b621fd7762ee520b29f43160068d003148d7f14c.zip |
DIRECTOR: Add detection for "Masters of the Elements"
Currently, only the German Windows and Mac release are detected.
-rw-r--r-- | engines/director/detection.cpp | 1 | ||||
-rw-r--r-- | engines/director/detection_tables.h | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/engines/director/detection.cpp b/engines/director/detection.cpp index f31535e1b4..0815dd9454 100644 --- a/engines/director/detection.cpp +++ b/engines/director/detection.cpp @@ -71,6 +71,7 @@ static const PlainGameDescriptor directorGames[] = { { "jewels", "Jewels of the Oracle" }, { "jman", "The Journeyman Project" }, { "majestic", "Majestic Part I: Alien Encounter" }, + { "melements", "Masters of the Elements" }, { "spyclub", "Spy Club" }, { "amber", "AMBER: Journeys Beyond"}, { "vvvampire", "Victor Vector & Yondo: The Vampire's Coffin"}, diff --git a/engines/director/detection_tables.h b/engines/director/detection_tables.h index 9e64aefd11..d0c359765a 100644 --- a/engines/director/detection_tables.h +++ b/engines/director/detection_tables.h @@ -198,6 +198,44 @@ static const DirectorGameDescription gameDescriptions[] = { { { + // Masters of the Elements - German (from rootfather) + // Released in Germany as "Meister Zufall und die Herrscher der Elemente" + // Developed by IJsfontein, published by Tivola + // File version of MVM.EXE is 6.0.2.32 + // The game disc is a hybrid CD-ROM containing both the Windows and the Macintosh release. + + "melements", + "", + AD_ENTRY1("MVM.EXE", "518a98696fe1122e08410b0f157f21bf"), + Common::DE_DEU, + Common::kPlatformWindows, + ADGF_NO_FLAGS, + GUIO1(GUIO_NOASPECT) + }, + GID_GENERIC, + 5 + }, + + { + { + // Masters of the Elements - German (from rootfather) + // Released in Germany as "Meister Zufall und die Herrscher der Elemente" + // Released on the same CD-ROM as the Windows release. + + "melements", + "", + AD_ENTRY1("Meister Zufall", "65063397536553c4f6ff2a6c07194bf7"), + Common::DE_DEU, + Common::kPlatformMacintosh, + ADGF_NO_FLAGS, + GUIO1(GUIO_NOASPECT) + }, + GID_GENERIC, + 5 + }, + + { + { "spyclub", "", AD_ENTRY1("SPYCLUB.EXE", "65d06b5fef155a2473434571aff5bc29"), |