mirror of
https://github.com/scummvm/scummvm.git
synced 2026-05-21 05:40:43 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user