[Scummvm-git-logs] scummvm master -> f12fe5e9b5aa87efd43e60fe9deb6cabd7f48479
bluegr
bluegr at gmail.com
Sun Aug 15 19:07:40 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
f12fe5e9b5 SCUMM: Add German MI1 Lemonhead lines
Commit: f12fe5e9b5aa87efd43e60fe9deb6cabd7f48479
https://github.com/scummvm/scummvm/commit/f12fe5e9b5aa87efd43e60fe9deb6cabd7f48479
Author: Jan Sperling (sperling at b1-systems.de)
Date: 2021-08-15T22:07:38+03:00
Commit Message:
SCUMM: Add German MI1 Lemonhead lines
Changed paths:
engines/scumm/resource.cpp
engines/scumm/script_v5.cpp
diff --git a/engines/scumm/resource.cpp b/engines/scumm/resource.cpp
index 73fe6a9e52..bbc7c2f644 100644
--- a/engines/scumm/resource.cpp
+++ b/engines/scumm/resource.cpp
@@ -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;
diff --git a/engines/scumm/script_v5.cpp b/engines/scumm/script_v5.cpp
index 5cb5bb6b6f..cb5d3ddbd7 100644
--- a/engines/scumm/script_v5.cpp
+++ b/engines/scumm/script_v5.cpp
@@ -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"
More information about the Scummvm-git-logs
mailing list