diff options
author | Eugene Sandulenko | 2016-12-03 22:56:45 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-12-03 22:57:18 +0100 |
commit | 5a92417fb7ecdcb1de53b8794a3cc794a69026b5 (patch) | |
tree | deab3542dedb9e906cc693b6f5398bd146bd0b9c /engines/fullpipe | |
parent | 77e0297b2a9c1226966afc9bcd81f992c59ccf7c (diff) | |
download | scummvm-rg350-5a92417fb7ecdcb1de53b8794a3cc794a69026b5.tar.gz scummvm-rg350-5a92417fb7ecdcb1de53b8794a3cc794a69026b5.tar.bz2 scummvm-rg350-5a92417fb7ecdcb1de53b8794a3cc794a69026b5.zip |
FULLPIPE: Added detection for German Demo and using different file for version detection
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/detection.cpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/engines/fullpipe/detection.cpp b/engines/fullpipe/detection.cpp index 178057bf8d..96c677ca21 100644 --- a/engines/fullpipe/detection.cpp +++ b/engines/fullpipe/detection.cpp @@ -50,7 +50,7 @@ static const ADGameDescription gameDescriptions[] = { { "fullpipe", 0, - AD_ENTRY1s("0654.sc2", "099f54f86d33ad2395f3b854b7e05058", 2272), + AD_ENTRY1s("4620.sc2", "a1a8f3ed731b0dfea43beaa3016fdc71", 554), Common::RU_RUS, Common::kPlatformWindows, ADGF_DROPPLATFORM, @@ -61,13 +61,24 @@ static const ADGameDescription gameDescriptions[] = { { "fullpipe", 0, - AD_ENTRY1s("0654.sc2", "d8743351fc53d205f42d91f6d791e51b", 2272), + AD_ENTRY1s("4620.sc2", "e4f24ffe4dc84cafc648b951e66c1fb3", 554), Common::DE_DEU, Common::kPlatformWindows, ADGF_DROPPLATFORM, GUIO1(GUIO_NONE) }, + // Fullpipe German Demo version + { + "fullpipe", + 0, + AD_ENTRY1s("4620.sc2", "e5e98df537e56b39c33ae1d5c90976fe", 510), + Common::DE_DEU, + Common::kPlatformWindows, + ADGF_DROPPLATFORM | ADGF_DEMO, + GUIO1(GUIO_NONE) + }, + AD_TABLE_END_MARKER }; |