GRIM: Add English Mac EMI detection entry

The game crashes almost immediately for me, though.
This commit is contained in:
Torbjörn Andersson 2023-07-25 20:24:20 +02:00
parent 0c80eb0cf8
commit b59d22dd09
2 changed files with 22 additions and 1 deletions

View File

@ -511,6 +511,20 @@ static const GrimGameDescription gameDescriptions[] = {
},
GType_MONKEY4
},
{
// Escape from Monkey Island English (Mac)
{
"monkey4",
"",
AD_ENTRY2s("artAll.m4b", "61959da91d864bf5f4588daa4a5a3019", 18515664,
"Monkey Island 4 Installer", "r:8230927789935674546c4b3f9b1368ea", 560139),
Common::EN_ANY,
Common::kPlatformMacintosh,
ADGF_UNSTABLE,
GUI_OPTIONS_GRIME
},
GType_MONKEY4
},
{
// Escape from Monkey Island German (Mac)
{

View File

@ -408,6 +408,9 @@ const char *emid_voice[] = {
"7f9867d48b5e0af5cb3fbd8d79741f5d", // english patched
};
// FIXME: We should check the MD5 of the resource and data forks, not of the
// particular dump.
// EMI Macintosh
const char *emi_installer[] = {
"93a639e3221405862dc46e9706216c00", // German (EFMI Installer)
@ -523,7 +526,11 @@ void MD5Check::init() {
MD5SUM("artMel.m4b", emi_artMel)
MD5SUM("artMon.m4b", emi_artMon)
MD5SUM("lip.m4b", emi_lip)
MD5SUM("local.m4b", emi_local)
// At least in the English version, this appears to be part of the
// installer.
if (g_grim->getGameLanguage() != Common::EN_ANY) {
MD5SUM("local.m4b", emi_local)
}
MD5SUM("sfx.m4b", emi_sfx)
MD5SUM("voiceAll.m4b", emi_voiceAll)
MD5SUM("voiceJam.m4b", emi_voiceJam)