diff options
Diffstat (limited to 'scumm/script_v6.cpp')
-rw-r--r-- | scumm/script_v6.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 26057c800f..53b1245155 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -2405,9 +2405,9 @@ void ScummEngine_v6::o6_kernelSetFunctions() { case 6: { uint32 speed; assert(getStringAddressVar(VAR_VIDEONAME)); - if (strcmp((char *)getStringAddressVar(VAR_VIDEONAME), "sq3.san") == 0) - speed = 71000; - else { + if (strcmp((char *)getStringAddressVar(VAR_VIDEONAME), "sq3.san") == 0) { + speed = 1000000 / 14; + } else { if (_smushFrameRate == 0) _smushFrameRate = 14; speed = 1000000 / _smushFrameRate; |