diff options
author | Alyssa Milburn | 2011-04-24 12:10:07 +0200 |
---|---|---|
committer | Alyssa Milburn | 2011-04-24 12:10:07 +0200 |
commit | d3ca972ab4ebed4863eb28da4c8c4b18355a9c9f (patch) | |
tree | 72240e743425bd734557b3f9c1152ea418f06db6 /engines | |
parent | 60a21245713489caac4a288b4172af3a74174810 (diff) | |
download | scummvm-rg350-d3ca972ab4ebed4863eb28da4c8c4b18355a9c9f.tar.gz scummvm-rg350-d3ca972ab4ebed4863eb28da4c8c4b18355a9c9f.tar.bz2 scummvm-rg350-d3ca972ab4ebed4863eb28da4c8c4b18355a9c9f.zip |
MOHAWK: Add detection for The Berenstain Bears In The Dark.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/detection.cpp | 1 | ||||
-rw-r--r-- | engines/mohawk/detection_tables.h | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp index cad24b55f1..80f4c0f702 100644 --- a/engines/mohawk/detection.cpp +++ b/engines/mohawk/detection.cpp @@ -141,6 +141,7 @@ static const PlainGameDescriptor mohawkGames[] = { {"rugrats", "Rugrats Adventure Game"}, {"lbsampler", "Living Books Sampler"}, {"bearfight", "The Berenstain Bears Get in a Fight"}, + {"beardark", "The Berenstain Bears In The Dark"}, {"arthurcomp", "Arthur's Computer Adventure"}, {"harryhh","Harry and the Haunted House"}, {"stellaluna", "Stellaluna"}, diff --git a/engines/mohawk/detection_tables.h b/engines/mohawk/detection_tables.h index 0391252141..fb7203f855 100644 --- a/engines/mohawk/detection_tables.h +++ b/engines/mohawk/detection_tables.h @@ -1561,6 +1561,55 @@ static const MohawkGameDescription gameDescriptions[] = { "Bears Get in a Fight" }, + // From bkennimer in bug #3284930 + { + { + "beardark", + "", + AD_ENTRY1("DARK.LB", "81d1e6eaf88d54bd29836a133935c0d4"), + Common::EN_ANY, + Common::kPlatformWindows, + ADGF_NO_FLAGS, + Common::GUIO_NONE + }, + GType_LIVINGBOOKSV3, + 0, + 0 + }, + + // From bkennimer in bug #3284930 + // 32-bit version of the previous entry + { + { + "beardark", + "", + AD_ENTRY1("DARK32.LB", "28abbf5498aeb29e78e5e0dec969ebe2"), + Common::EN_ANY, + Common::kPlatformWindows, + ADGF_NO_FLAGS, + Common::GUIO_NONE + }, + GType_LIVINGBOOKSV3, + 0, + 0 + }, + + // From bkennimer in bug #3284930 + { + { + "beardark", + "", + AD_ENTRY1("BookOutline", "95b2e43778ca9cfaee37bdde843e7681"), + Common::EN_ANY, + Common::kPlatformMacintosh, + ADGF_NO_FLAGS, + Common::GUIO_NONE + }, + GType_LIVINGBOOKSV3, + 0, + 0 + }, + { { "arthurcomp", |