mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-08 10:51:11 +00:00
SCUMM: Add German MI1 Lemonhead lines
This commit is contained in:
parent
95e264ed72
commit
f12fe5e9b5
@ -1851,6 +1851,17 @@ bool ScummEngine::tryPatchMI1CannibalScript(byte *buf, int size) {
|
||||
scriptOffset -= 4;
|
||||
}
|
||||
break;
|
||||
case Common::DE_DEU:
|
||||
expectedSize = 83554;
|
||||
scriptOffset = 74198;
|
||||
scriptLength = 632;
|
||||
expectedMd5 = "27d6d8eab4e0f66792e10769090ae047";
|
||||
patchOffset = 170;
|
||||
patchLength = 23;
|
||||
lang[0] = 'D';
|
||||
lang[1] = 'E';
|
||||
lang[2] = 'U';
|
||||
break;
|
||||
case Common::IT_ITA:
|
||||
expectedSize = 83211;
|
||||
scriptOffset = 73998;
|
||||
|
@ -2875,6 +2875,11 @@ void ScummEngine_v5::printPatchedMI1CannibalString(int textSlot, const byte *ptr
|
||||
"Oooh, that's nice.\xFF\x03"
|
||||
"Simple. Just like one of mine.\xFF\x03"
|
||||
"And little. Like mine.";
|
||||
} else if (strncmp((const char *)ptr, "/LH.DEU/", 8) == 0) {
|
||||
msg =
|
||||
"Oooh, das ist nett.\xFF\x03"
|
||||
"Einfach. Wie eines von meinen.\xFF\x03"
|
||||
"Und klein. Wie meine.";
|
||||
} else if (strncmp((const char *)ptr, "/LH.ITA/", 8) == 0) {
|
||||
msg =
|
||||
"Oooh, che bello.\xFF\x03"
|
||||
|
Loading…
Reference in New Issue
Block a user