diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/riven_stack.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mohawk/riven_stack.cpp b/engines/mohawk/riven_stack.cpp index 2931383d07..0a274b2cc2 100644 --- a/engines/mohawk/riven_stack.cpp +++ b/engines/mohawk/riven_stack.cpp @@ -207,11 +207,11 @@ void RivenStack::runCredits(uint16 video, uint32 delay) { nextCreditsFrameStart = _vm->getTotalPlayTime() + delay; } else if (_vm->getTotalPlayTime() >= nextCreditsFrameStart) { // the first two frames stay on for 4 seconds - // the rest of the scroll updates happen at 30Hz + // the rest of the scroll updates happen at 60Hz if (_vm->_gfx->getCurCreditsImage() < 304) nextCreditsFrameStart = _vm->getTotalPlayTime() + 4000; else - nextCreditsFrameStart = _vm->getTotalPlayTime() + 1000 / 30; + nextCreditsFrameStart = _vm->getTotalPlayTime() + 1000 / 60; _vm->_gfx->updateCredits(); } |