aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Bouclet2017-07-19 07:22:38 +0200
committerBastien Bouclet2017-07-19 07:23:32 +0200
commitd03475e5abbbce905d1f4914198dddcd01250ac1 (patch)
tree09581dcd3aeeee07d151ba4c6f565e8b8a2ea08e
parenta7dd81060bc6f1d010d61d6fcf273e618acbb52e (diff)
downloadscummvm-rg350-d03475e5abbbce905d1f4914198dddcd01250ac1.tar.gz
scummvm-rg350-d03475e5abbbce905d1f4914198dddcd01250ac1.tar.bz2
scummvm-rg350-d03475e5abbbce905d1f4914198dddcd01250ac1.zip
MOHAWK: Riven: Speed up the credits
Fixes #9970.
-rw-r--r--engines/mohawk/riven_stack.cpp4
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();
}