aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/riven_card.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/riven_card.cpp')
-rw-r--r--engines/mohawk/riven_card.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mohawk/riven_card.cpp b/engines/mohawk/riven_card.cpp
index 93f194c610..09c72d5258 100644
--- a/engines/mohawk/riven_card.cpp
+++ b/engines/mohawk/riven_card.cpp
@@ -396,7 +396,7 @@ RivenScriptPtr RivenCard::onMouseMove(const Common::Point &mouse) {
void RivenCard::onMouseDragUpdate() {
if (_pressedHotspot) {
RivenScriptPtr script = _pressedHotspot->getScript(kMouseDragScript);
- _vm->_scriptMan->runScript(script, false);
+ _vm->_scriptMan->runScript(script, true);
}
}
@@ -407,7 +407,7 @@ void RivenCard::onMouseUpdate() {
}
if (!script->empty()) {
- _vm->_scriptMan->runScript(script, false);
+ _vm->_scriptMan->runScript(script, true);
} else {
updateMouseCursor();
}