diff options
author | yinsimei | 2017-06-27 09:33:14 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-07-13 18:27:45 +0200 |
commit | 279a53302ad27902c2e90b9ae73a42fbfe414c24 (patch) | |
tree | 6fac64386d5eabfb76a315b2f85e472078eb2dbf /engines/sludge | |
parent | 03f43f789c38fc3596f31d1e39759265f60e4bb0 (diff) | |
download | scummvm-rg350-279a53302ad27902c2e90b9ae73a42fbfe414c24.tar.gz scummvm-rg350-279a53302ad27902c2e90b9ae73a42fbfe414c24.tar.bz2 scummvm-rg350-279a53302ad27902c2e90b9ae73a42fbfe414c24.zip |
SLUDGE: add game detection for Robin's rescue
Diffstat (limited to 'engines/sludge')
-rw-r--r-- | engines/sludge/detection.cpp | 1 | ||||
-rw-r--r-- | engines/sludge/detection_tables.h | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/engines/sludge/detection.cpp b/engines/sludge/detection.cpp index 67606106c1..6dc7c12b7c 100644 --- a/engines/sludge/detection.cpp +++ b/engines/sludge/detection.cpp @@ -49,6 +49,7 @@ static const PlainGameDescriptor sludgeGames[] = { { "welcome", "Welcome Example" }, { "welcomeloop", "Welcome Loop Test" }, { "verbcoin", "Verb Coin" }, + { "robinsrescue", "Robin's Rescue" }, { 0, 0 } }; diff --git a/engines/sludge/detection_tables.h b/engines/sludge/detection_tables.h index 72df456235..a64bdab314 100644 --- a/engines/sludge/detection_tables.h +++ b/engines/sludge/detection_tables.h @@ -62,6 +62,19 @@ static const SludgeGameDescription gameDescriptions[] = { 0 }, + { + { + "robinsrescue", + "", + AD_ENTRY1s("robins_rescue.slg", "16cbf2bf916ed89f9c1b14fab133cf96", 14413769), + Common::EN_ANY, + Common::kPlatformUnknown, + ADGF_NO_FLAGS, + GUIO0() + }, + 0 + }, + { AD_TABLE_END_MARKER, 0 } }; |