aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script_v1.cpp
diff options
context:
space:
mode:
authorOystein Eftevaag2006-03-18 04:41:34 +0000
committerOystein Eftevaag2006-03-18 04:41:34 +0000
commit05ee5cf2bdca6b97b6cd7ce93bfbe80cfc9a61fe (patch)
tree5b89b610c0bcdd7be80485de3c5998a239e6047f /engines/kyra/script_v1.cpp
parentdcf029e947fc8cfafe06c86957222040a08df321 (diff)
downloadscummvm-rg350-05ee5cf2bdca6b97b6cd7ce93bfbe80cfc9a61fe.tar.gz
scummvm-rg350-05ee5cf2bdca6b97b6cd7ce93bfbe80cfc9a61fe.tar.bz2
scummvm-rg350-05ee5cf2bdca6b97b6cd7ce93bfbe80cfc9a61fe.zip
Extends seq_drinkPotionAnim() so that the color of the flask Brandon
drinks will be correct. Also fixes a bug where an animation (Brandon ringing the bells) would play too quickly. svn-id: r21354
Diffstat (limited to 'engines/kyra/script_v1.cpp')
-rw-r--r--engines/kyra/script_v1.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/script_v1.cpp b/engines/kyra/script_v1.cpp
index 313649c276..3f29038948 100644
--- a/engines/kyra/script_v1.cpp
+++ b/engines/kyra/script_v1.cpp
@@ -1331,7 +1331,8 @@ int KyraEngine::cmd_waitForConfirmationMouseClick(ScriptState *script) {
delay(10);
}
// }
- // XXX processButtonList calls
+ processButtonList(_buttonList);
+ _skipFlag = false;
script->variables[1] = _mouseX;
script->variables[2] = _mouseY;
return 0;