diff -ur ScummVM-cvs20030108/scummvm/scumm/script_v6.cpp ScummVM-cvs20030108+hack/scummvm/scumm/script_v6.cpp
old
|
new
|
|
2237 | 2237 | |
2238 | 2238 | void Scumm_v6::o6_delaySeconds() |
2239 | 2239 | { |
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; |
2242 | 2244 | vm.slot[_currentScript].delay = delay; |
2243 | 2245 | vm.slot[_currentScript].status = 1; |
2244 | 2246 | o6_breakHere(); |