SCUMM: Adjust timings for Italian Sam & Max intro.

This commit is contained in:
Torbjörn Andersson 2022-04-01 17:36:51 +02:00 committed by Torbjörn Andersson
parent 54fd5caac8
commit 127976b510
2 changed files with 45 additions and 7 deletions

View file

@ -661,6 +661,12 @@ void ScummEngine::writeVar(uint var, int value) {
// "Wirst Du brutzeln, wie eine grobe Bratwurst!"
if (value == 1 && _language == Common::DE_DEU)
value = 4;
// Max beats up the scientist. This was probably to
// match the subtitles to the speech better, but this
// is just too much!
if (value == 2 && _language == Common::IT_ITA)
value = 3;
}
_scummVars[var] = value;