aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script_mr.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2008-05-05 21:57:26 +0000
committerJohannes Schickel2008-05-05 21:57:26 +0000
commit0faf76bfacb5769b008ae24c956775975b152629 (patch)
tree1af813b0e85e7d86fca05d773da808bdfc8382ad /engines/kyra/script_mr.cpp
parent874be3cfb49027df093d984f0ff1b98ddd13708f (diff)
downloadscummvm-rg350-0faf76bfacb5769b008ae24c956775975b152629.tar.gz
scummvm-rg350-0faf76bfacb5769b008ae24c956775975b152629.tar.bz2
scummvm-rg350-0faf76bfacb5769b008ae24c956775975b152629.zip
Removed delay from KyraEngine_MR::npcChatSequence, since it's doing delay script internally. This fixes some chat animation speeds.
svn-id: r31884
Diffstat (limited to 'engines/kyra/script_mr.cpp')
-rw-r--r--engines/kyra/script_mr.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/script_mr.cpp b/engines/kyra/script_mr.cpp
index df7e5cc522..8746ec83d7 100644
--- a/engines/kyra/script_mr.cpp
+++ b/engines/kyra/script_mr.cpp
@@ -728,7 +728,7 @@ int KyraEngine_MR::o3_daggerWarning(EMCState *script) {
int selection = 1;
_screen->hideMouse();
- _screen->copyRegionToBuffer(0, 0, 0, 320, 200, _screenBuffer);
+ _screen->copyRegionToBuffer(1, 0, 0, 320, 200, _screenBuffer);
int curPageBackUp = _screen->_curPage;
_screen->_curPage = 2;
@@ -1121,6 +1121,7 @@ int KyraEngine_MR::o3d_delay(EMCState *script) {
updateWithText();
else
update();
+
_system->delayMillis(10);
}
return 0;