Ticket #8154: comi-delay.diff

File comi-delay.diff, 764 bytes (added by eriktorbjorn, 22 years ago)

Patch against a January 8 CVS snapshot

  • scummvm/scumm/script_v6.cpp

    diff -ur ScummVM-cvs20030108/scummvm/scumm/script_v6.cpp ScummVM-cvs20030108+hack/scummvm/scumm/script_v6.cpp
    old new  
    22372237
    22382238void Scumm_v6::o6_delaySeconds()
    22392239{
    2240         // FIXME - are we really measuring minutes here?
    2241         uint32 delay = (uint16)pop() * 60;
     2240        // FIXME - are we really measuring minutes here? Apparently not,
     2241        // because a delay factor of 8 during the first CMI chapter screen
     2242        // should translate into a delay of 11-12 seconds.
     2243        uint32 delay = (uint16)pop() * 90;
    22422244        vm.slot[_currentScript].delay = delay;
    22432245        vm.slot[_currentScript].status = 1;
    22442246        o6_breakHere();