diff options
author | Simei Yin | 2017-07-21 13:29:57 +0200 |
---|---|---|
committer | Simei Yin | 2017-07-21 13:29:57 +0200 |
commit | 5c853fbd65cdaefd4cce51c95d97fad9064acbe6 (patch) | |
tree | 7f1fd55e48dac51c57115adb898654886f7fcb74 /engines/sludge | |
parent | e120aa585e640b89f3b0297c2c6dcfb7212ebe87 (diff) | |
download | scummvm-rg350-5c853fbd65cdaefd4cce51c95d97fad9064acbe6.tar.gz scummvm-rg350-5c853fbd65cdaefd4cce51c95d97fad9064acbe6.tar.bz2 scummvm-rg350-5c853fbd65cdaefd4cce51c95d97fad9064acbe6.zip |
SLUDGE: Add some windows-only games with running problems
Diffstat (limited to 'engines/sludge')
-rw-r--r-- | engines/sludge/detection.cpp | 7 | ||||
-rw-r--r-- | engines/sludge/detection_tables.h | 41 |
2 files changed, 46 insertions, 2 deletions
diff --git a/engines/sludge/detection.cpp b/engines/sludge/detection.cpp index 8a8a785864..de5897b66c 100644 --- a/engines/sludge/detection.cpp +++ b/engines/sludge/detection.cpp @@ -49,9 +49,12 @@ static const PlainGameDescriptor sludgeGames[] = { { "verbcoin", "Verb Coin" }, { "robinsrescue", "Robin's Rescue" }, { "outoforder", "Out Of Order" }, - { "frasse", "Frasse and the Peas of Kejick"}, - { "interview", "The Interview"}, + { "frasse", "Frasse and the Peas of Kejick" }, + { "interview", "The Interview" }, { "life", "Life Flashed By"}, + { "tgttpoacs", "The Game That Takes Place on a Cruise Ship" }, + { "mandy", "Mandy Christmas Adventure" }, + { "cubert", "Cubert Badbone, P.I." }, { 0, 0 } }; diff --git a/engines/sludge/detection_tables.h b/engines/sludge/detection_tables.h index bdeb3b1a8d..abdfde51ae 100644 --- a/engines/sludge/detection_tables.h +++ b/engines/sludge/detection_tables.h @@ -127,6 +127,47 @@ static const SludgeGameDescription gameDescriptions[] = { 0 }, + // TODO: the games down here are windows-only and can't be successfully run by + // sludge engine nor scummvm, need to solve it + { + { + "tgttpoacs", + "", + AD_ENTRY1s("gamedata", "d5ec4d7d8440f7744335d25d25e1e943", 40368), + Common::EN_ANY, + Common::kPlatformUnknown, + ADGF_NO_FLAGS, + GUIO0() + }, + 0 + }, + + { + { + "mandy", + "", + AD_ENTRY1s("gamedata", "bb51eea418d87071c98f4e050ccf6387", 589), + Common::EN_ANY, + Common::kPlatformUnknown, + ADGF_NO_FLAGS, + GUIO0() + }, + 0 + }, + + { + { + "cubert", + "", + AD_ENTRY1s("gamedata", "0078eb54f63cc0a22e50f17d904fcfde", 26799), + Common::UNK_LANG, + Common::kPlatformUnknown, + ADGF_NO_FLAGS, + GUIO0() + }, + 0 + }, + { AD_TABLE_END_MARKER, 0 } }; |