diff options
author | Eugene Sandulenko | 2018-06-20 16:24:19 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 0f2654fb0c7fe383814357b84deb89dad99ff34c (patch) | |
tree | 932c14d951af5458a7a7868cdf7c2a017d3ccca9 /engines/pink | |
parent | 6b6e38fa1de31afc62fd16a549c71ec86f1d92d5 (diff) | |
download | scummvm-rg350-0f2654fb0c7fe383814357b84deb89dad99ff34c.tar.gz scummvm-rg350-0f2654fb0c7fe383814357b84deb89dad99ff34c.tar.bz2 scummvm-rg350-0f2654fb0c7fe383814357b84deb89dad99ff34c.zip |
PINK: Added detection for Russian versions
Diffstat (limited to 'engines/pink')
-rw-r--r-- | engines/pink/detection_tables.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/engines/pink/detection_tables.h b/engines/pink/detection_tables.h index eb71decbf5..40e1ebb1b9 100644 --- a/engines/pink/detection_tables.h +++ b/engines/pink/detection_tables.h @@ -43,6 +43,23 @@ static const ADGameDescription gameDescriptions[] = { ADGF_UNSTABLE | ADGF_DROPPLATFORM, GUIO1(GUIO_NONE) }, + + // Russian + { + "peril", + 0, + { + {"PPTP.ORB", NULL, "4802bace9cd89a73eb915a075b230646", 635322616}, + {"PPTP.BRO", NULL, "87539dbbb34bafbe223c751a60254505", 8945466}, + {"PPTP.EXE", NULL, "739259d239acdc0304f904016e775fb3", 742912}, + AD_LISTEND + }, + Common::RU_RUS, + Common::kPlatformWindows, + ADGF_UNSTABLE | ADGF_DROPPLATFORM, + GUIO1(GUIO_NONE) + }, + // English, Version 1.0 { "pokus", @@ -57,6 +74,22 @@ static const ADGameDescription gameDescriptions[] = { ADGF_UNSTABLE | ADGF_DROPPLATFORM, GUIO1(GUIO_NONE) }, + + // Russian + { + "pokus", + 0, + { + {"HPP.orb", NULL, "1e5155c2219b3baea599563e02596ce5", 526369062}, + {"hpp.exe", NULL, "32a5937f69dfce9f159b7be358cbd008", 699904}, + AD_LISTEND + }, + Common::RU_RUS, + Common::kPlatformWindows, + ADGF_UNSTABLE | ADGF_DROPPLATFORM, + GUIO1(GUIO_NONE) + }, + AD_TABLE_END_MARKER }; |