diff options
author | Strangerke | 2012-04-02 00:56:05 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-28 17:36:57 +0200 |
commit | 38b7961bcb2ba472d7d119816dcb7cae29617e07 (patch) | |
tree | 439841974b83033869a72c856be2775522524d2a /engines | |
parent | 561b20edde3d94e63acb0b0292113a3ad434b264 (diff) | |
download | scummvm-rg350-38b7961bcb2ba472d7d119816dcb7cae29617e07.tar.gz scummvm-rg350-38b7961bcb2ba472d7d119816dcb7cae29617e07.tar.bz2 scummvm-rg350-38b7961bcb2ba472d7d119816dcb7cae29617e07.zip |
LILLIPUT: Add detection for French, German and Italian versions
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lilliput/detection.cpp | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/engines/lilliput/detection.cpp b/engines/lilliput/detection.cpp index 1925c71f88..bd31de15c9 100644 --- a/engines/lilliput/detection.cpp +++ b/engines/lilliput/detection.cpp @@ -70,7 +70,54 @@ static const LilliputGameDescription gameDescriptions[] = { }, kGameTypeRobin }, - + // Robin Hood French + { + { + "robin", 0, + { + {"frules.prg", 0, "cf076c5ebfe8b3571e74a6a46d79426f", 76660}, + {"isomap.dta", 0, "bad97eae03a4db3e99565e39b0b3c06a", 16384}, + AD_LISTEND + }, + Common::FR_FRA, + Common::kPlatformDOS, + ADGF_NO_FLAGS, + GUIO0() + }, + kGameTypeRobin + }, + // Robin Hood German + { + { + "robin", 0, + { + {"grules.prg", 0, "b53b7353dc1e841b206a64851e7bc58c", 78050}, + {"isomap.dta", 0, "bad97eae03a4db3e99565e39b0b3c06a", 16384}, + AD_LISTEND + }, + Common::DE_DEU, + Common::kPlatformDOS, + ADGF_NO_FLAGS, + GUIO0() + }, + kGameTypeRobin + }, + // Robin Hood Italian + { + { + "robin", 0, + { + {"irules.prg", 0, "4d69ed3cda1e1d73585905517ea705d1", 75654}, + {"isomap.dta", 0, "bad97eae03a4db3e99565e39b0b3c06a", 16384}, + AD_LISTEND + }, + Common::IT_ITA, + Common::kPlatformDOS, + ADGF_NO_FLAGS, + GUIO0() + }, + kGameTypeRobin + }, {AD_TABLE_END_MARKER, kGameTypeNone} }; |