diff options
author | Matthew Hoops | 2009-02-16 15:35:35 +0000 |
---|---|---|
committer | Matthew Hoops | 2009-02-16 15:35:35 +0000 |
commit | 39ea68173ab4b2cb58e0cfb8eeb0b35f55e6fc4c (patch) | |
tree | 94ca8c7896a0f06bc8ae8b3f11ab82f282705622 /engines/sci | |
parent | 74b654e9b5d5647c70fbc22e363a9bd7d39e9251 (diff) | |
download | scummvm-rg350-39ea68173ab4b2cb58e0cfb8eeb0b35f55e6fc4c.tar.gz scummvm-rg350-39ea68173ab4b2cb58e0cfb8eeb0b35f55e6fc4c.tar.bz2 scummvm-rg350-39ea68173ab4b2cb58e0cfb8eeb0b35f55e6fc4c.zip |
Add detection for the Shivers demo and split the Torin's Passage entry into multiple as their main data files are the same.
svn-id: r38370
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/detection.cpp | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp index 5bdb9dd672..0bb7bde405 100644 --- a/engines/sci/detection.cpp +++ b/engines/sci/detection.cpp @@ -799,6 +799,13 @@ static const struct SciGameDescription SciGameDescriptions[] = { {"ressci.000", 0, "6751b144671e2deed919eb9d284b07eb", 262390692}, {NULL, 0, NULL, 0}}, Common::DE_DEU, Common::kPlatformWindows, 0}, {}}, + + // Shivers - English Demo + {{"shivers", "Demo", { + {"resmap.000", 0, "d9e0bc5eddefcbe47f528760085d8927", 1186}, + {"ressci.000", 0, "3a93c6340b54e07e65d0e5583354d186", 10505469}, + {NULL, 0, NULL, 0}}, Common::EN_ANY, Common::kPlatformWindows, ADGF_DEMO}, + {}}, // Space Quest 1 VGA Remake - English {{"sq1sci", "VGA Remake", { @@ -963,13 +970,34 @@ static const struct SciGameDescription SciGameDescriptions[] = { {NULL, 0, NULL, 0}}, Common::EN_ANY, Common::kPlatformPC, 0}, {}}, - // Torin's Passage - Spanish? (the cd print says spanish subtitles) + // Torin's Passage - English {{"torin", "", { {"resmap.000", 0, "bb3b0b22ff08df54fbe2d06263409be6", 9799}, {"ressci.000", 0, "693a259d346c9360f4a0c11fdaae430a", 55973887}, - {NULL, 0, NULL, 0}}, Common::ES_ESP, Common::kPlatformPC, 0}, + {NULL, 0, NULL, 0}}, Common::EN_ANY, Common::kPlatformWindows, 0}, {}}, - + + // Torin's Passage - Spanish + {{"torin", "", { + {"resmap.000", 0, "bb3b0b22ff08df54fbe2d06263409be6", 9799}, + {"ressci.000", 0, "693a259d346c9360f4a0c11fdaae430a", 55973887}, + {NULL, 0, NULL, 0}}, Common::ES_ESP, Common::kPlatformWindows, 0}, + {}}, + + // Torin's Passage - French + {{"torin", "", { + {"resmap.000", 0, "bb3b0b22ff08df54fbe2d06263409be6", 9799}, + {"ressci.000", 0, "693a259d346c9360f4a0c11fdaae430a", 55973887}, + {NULL, 0, NULL, 0}}, Common::FR_FRA, Common::kPlatformWindows, 0}, + {}}, + + // Torin's Passage - German + {{"torin", "", { + {"resmap.000", 0, "bb3b0b22ff08df54fbe2d06263409be6", 9799}, + {"ressci.000", 0, "693a259d346c9360f4a0c11fdaae430a", 55973887}, + {NULL, 0, NULL, 0}}, Common::DE_DEU, Common::kPlatformWindows, 0}, + {}}, + {AD_TABLE_END_MARKER, {}} }; |