aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2011-08-15 23:04:58 -0400
committerMatthew Hoops2011-08-15 23:04:58 -0400
commit52d8146d9b139629eb69a7be9151f2b0d6e75483 (patch)
tree678ebf548e33a3fbf1029115fa0bc3622fe670cb /engines
parentfcd84f67c8640f24dd9eb48e18f500aa180fe5c8 (diff)
downloadscummvm-rg350-52d8146d9b139629eb69a7be9151f2b0d6e75483.tar.gz
scummvm-rg350-52d8146d9b139629eb69a7be9151f2b0d6e75483.tar.bz2
scummvm-rg350-52d8146d9b139629eb69a7be9151f2b0d6e75483.zip
MOHAWK: Fix timing of the first two Riven credits frames
Diffstat (limited to 'engines')
-rw-r--r--engines/mohawk/riven_external.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mohawk/riven_external.cpp b/engines/mohawk/riven_external.cpp
index 63f4307cfa..9e1365f8da 100644
--- a/engines/mohawk/riven_external.cpp
+++ b/engines/mohawk/riven_external.cpp
@@ -234,10 +234,10 @@ void RivenExternal::runCredits(uint16 video, uint32 delay) {
// Set us up to start after delay ms
nextCreditsFrameStart = _vm->_system->getMillis() + delay;
} else if (_vm->_system->getMillis() >= nextCreditsFrameStart) {
- // the first two frames stay on for 5 seconds
+ // the first two frames stay on for 4 seconds
// the rest of the scroll updates happen at 30Hz
if (_vm->_gfx->getCurCreditsImage() < 304)
- nextCreditsFrameStart = _vm->_system->getMillis() + 5000;
+ nextCreditsFrameStart = _vm->_system->getMillis() + 4000;
else
nextCreditsFrameStart = _vm->_system->getMillis() + 1000 / 30;