diff options
author | Eugene Sandulenko | 2016-12-04 15:21:10 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-12-04 15:21:37 +0100 |
commit | 1b1aba305e95b62e8e02ddc9f850a97283f429e0 (patch) | |
tree | f23b8be63880959e106f5cd6375c6e5354c8ad56 | |
parent | 137173aee364410f5e299adb1196188083ec8c9d (diff) | |
download | scummvm-rg350-1b1aba305e95b62e8e02ddc9f850a97283f429e0.tar.gz scummvm-rg350-1b1aba305e95b62e8e02ddc9f850a97283f429e0.tar.bz2 scummvm-rg350-1b1aba305e95b62e8e02ddc9f850a97283f429e0.zip |
FULLPIPE: Added detection for Russian demo version.
Crashes as startup
-rw-r--r-- | engines/fullpipe/detection.cpp | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/engines/fullpipe/detection.cpp b/engines/fullpipe/detection.cpp index 985421dfbe..e85e75e232 100644 --- a/engines/fullpipe/detection.cpp +++ b/engines/fullpipe/detection.cpp @@ -46,7 +46,7 @@ namespace Fullpipe { static const ADGameDescription gameDescriptions[] = { - // Fullpipe Russian version + // Full Pipe Russian version { "fullpipe", 0, @@ -57,7 +57,7 @@ static const ADGameDescription gameDescriptions[] = { GUIO1(GUIO_NONE) }, - // Fullpipe German version + // Full Pipe German version { "fullpipe", 0, @@ -68,7 +68,7 @@ static const ADGameDescription gameDescriptions[] = { GUIO1(GUIO_NONE) }, - // Fullpipe Estonian version + // Full Pipe Estonian version { "fullpipe", 0, @@ -79,7 +79,18 @@ static const ADGameDescription gameDescriptions[] = { GUIO1(GUIO_NONE) }, - // Fullpipe German Demo version + // Full Pipe Russian Demo version + { + "fullpipe", + 0, + AD_ENTRY1s("4620.sc2", "a0c71b47fc35a5e163fcd8d0972639bb", 70), + Common::RU_RUS, + Common::kPlatformWindows, + ADGF_DROPPLATFORM | ADGF_DEMO, + GUIO1(GUIO_NONE) + }, + + // Full Pipe German Demo version { "fullpipe", 0, |