aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2017-01-12 21:49:56 -0500
committerPaul Gilbert2017-01-12 21:49:56 -0500
commitc199d2e55d4a003f7941763cd9f8f999c07c557e (patch)
treeb4a87d2f7f2e53763bc627587dc67e2c91f724b3 /engines
parent804058eb210879d90cd4db3e457678d650e37603 (diff)
downloadscummvm-rg350-c199d2e55d4a003f7941763cd9f8f999c07c557e.tar.gz
scummvm-rg350-c199d2e55d4a003f7941763cd9f8f999c07c557e.tar.bz2
scummvm-rg350-c199d2e55d4a003f7941763cd9f8f999c07c557e.zip
TITANIC: Stop moving other items during drag operations
Diffstat (limited to 'engines')
-rw-r--r--engines/titanic/input_handler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/input_handler.cpp b/engines/titanic/input_handler.cpp
index 481224141d..cb1e3c9c68 100644
--- a/engines/titanic/input_handler.cpp
+++ b/engines/titanic/input_handler.cpp
@@ -132,7 +132,7 @@ void CInputHandler::processMessage(CMessage *msg) {
if (_dragItem) {
CMouseDragMoveMsg moveMsg(_dragStartPos);
- dispatchMessage(&moveMsg);
+ moveMsg.execute(_dragItem);
}
_dragging = true;