Ticket #8389: loom-typo.diff

File loom-typo.diff, 735 bytes (added by eriktorbjorn, 19 years ago)

Patch against a December 30 CVS snapshot

  • scumm/script_v5.cpp

    diff -ur ScummVM-cvs20041230/scumm/script_v5.cpp ScummVM-cvs20041230+hack/scumm/script_v5.cpp
    old new  
    26902690                        }
    26912691                        break;
    26922692                case 15:        // SO_TEXTSTRING
    2693                         printString(textSlot, _scriptPointer);
     2693                        // This happens when Chaos introduces herself to bishop
     2694                        // Mandible. Of all the places to put a typo...
     2695                        if (_gameId == GID_LOOM256 && memcmp(_scriptPointer, "I am Choas.\0", 12) == 0)
     2696                                printString(textSlot, (const byte *) "I am Chaos.");
     2697                        else
     2698                                printString(textSlot, _scriptPointer);
    26942699                        _scriptPointer += resStrLen(_scriptPointer) + 1;
    26952700
    26962701