aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-13 18:37:19 +0000
committerJohannes Schickel2009-09-13 18:37:19 +0000
commit0af418e7ea3a41f93fcc551a45ee5bae822d812a (patch)
tree3f1f017d5adc93a8cee807a2ae57de3d217a0ce7 /engines/kyra
parenta2900bf2460993b1d96cb7b67473415db49c53e0 (diff)
downloadscummvm-rg350-0af418e7ea3a41f93fcc551a45ee5bae822d812a.tar.gz
scummvm-rg350-0af418e7ea3a41f93fcc551a45ee5bae822d812a.tar.bz2
scummvm-rg350-0af418e7ea3a41f93fcc551a45ee5bae822d812a.zip
Fix regression caused by OSystem::updateScreen call limitation, which caused certain animations not to display at all.
svn-id: r44063
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/kyra_lok.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/kyra/kyra_lok.cpp b/engines/kyra/kyra_lok.cpp
index c8d799bfed..cb0499c38b 100644
--- a/engines/kyra/kyra_lok.cpp
+++ b/engines/kyra/kyra_lok.cpp
@@ -489,6 +489,8 @@ void KyraEngine_LoK::delay(uint32 amount, bool update, bool isMainLoop) {
_animator->updateAllObjectShapes();
updateTextFade();
updateMousePointer();
+ } else {
+ _screen->updateScreen();
}
_isSaveAllowed = isMainLoop;