diff options
author | Strangerke | 2013-05-05 22:59:10 +0200 |
---|---|---|
committer | Strangerke | 2013-05-05 22:59:10 +0200 |
commit | 3d5b975c37989ec9c21f3f6b678574903379340b (patch) | |
tree | a36019babafeb756f9315d0e28d4ac51f2adac11 /engines | |
parent | 6d1e456c05ca946d6be9b5509acda7179b8c25b7 (diff) | |
download | scummvm-rg350-3d5b975c37989ec9c21f3f6b678574903379340b.tar.gz scummvm-rg350-3d5b975c37989ec9c21f3f6b678574903379340b.tar.bz2 scummvm-rg350-3d5b975c37989ec9c21f3f6b678574903379340b.zip |
HOPKINS: Fix bug #3612483 - FadeOut length issue after lift animation
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hopkins/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/script.cpp b/engines/hopkins/script.cpp index 1324afef68..c14fb6c8f9 100644 --- a/engines/hopkins/script.cpp +++ b/engines/hopkins/script.cpp @@ -1960,7 +1960,7 @@ int ScriptManager::handleOpcode(const byte *dataP) { _vm->_animMan->playSequence("SECRET2.SEQ", 1, 12, 100, false, true); _vm->_soundMan->_specialSoundNum = 0; _vm->_graphicsMan->_noFadingFl = true; - _vm->_graphicsMan->fadeOutLong(); + _vm->_graphicsMan->fadeOutShort(); for (int i = 1; i <= 39; i++) { if (_vm->shouldQuit()) |