SCUMM: Fix regression in ScummEngine_v5::decodeParseString()
I noticed that the "I am Choas" typo in VGA Loom was no longer patched, and I'm guessing the other workarounds may have been broken too. This was a regression from when the missing Lemonhead lines in Monkey Island 1 were reinstated.
This commit is contained in:
parent
30517b4981
commit
bd2bf31c5f
1 changed files with 1 additions and 1 deletions
|
@ -2884,7 +2884,7 @@ void ScummEngine_v5::decodeParseString() {
|
|||
strcpy(tmpBuf + diff, "5000");
|
||||
strcpy(tmpBuf + diff + 4, tmp + sizeof("NCREDIT-NOTE-AMOUNT") - 1);
|
||||
printString(textSlot, (byte *)tmpBuf);
|
||||
} if (_game.id == GID_MONKEY && _roomResource == 25 && vm.slot[_currentScript].number == 205) {
|
||||
} else if (_game.id == GID_MONKEY && _roomResource == 25 && vm.slot[_currentScript].number == 205) {
|
||||
printPatchedMI1CannibalString(textSlot, _scriptPointer);
|
||||
} else {
|
||||
printString(textSlot, _scriptPointer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue