diff options
author | Matthew Hoops | 2011-08-15 23:04:58 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-08-15 23:04:58 -0400 |
commit | 52d8146d9b139629eb69a7be9151f2b0d6e75483 (patch) | |
tree | 678ebf548e33a3fbf1029115fa0bc3622fe670cb /engines | |
parent | fcd84f67c8640f24dd9eb48e18f500aa180fe5c8 (diff) | |
download | scummvm-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.cpp | 4 |
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; |