From cab8e3a66d65c0a53dcde6d025f4c43922da82a8 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Fri, 31 Dec 2004 17:51:45 +0000 Subject: Applied patch #1093830, with slight modifications proposed by Fingolfin. svn-id: r16396 --- scumm/script_v5.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index e1fdf8a298..6fd26b8603 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -2690,7 +2690,13 @@ void ScummEngine_v5::decodeParseString() { } break; case 15: // SO_TEXTSTRING - printString(textSlot, _scriptPointer); + // WORKAROUND: This happens when Chaos introduces + // herself to bishop Mandible. Of all the places to put + // a typo... + if (_gameId == GID_LOOM256 && strcmp((const char *) _scriptPointer, "I am Choas.") == 0) + printString(textSlot, (const byte *) "I am Chaos."); + else + printString(textSlot, _scriptPointer); _scriptPointer += resStrLen(_scriptPointer) + 1; -- cgit v1.2.3