diff options
author | Paul Gilbert | 2017-01-12 21:49:56 -0500 |
---|---|---|
committer | Paul Gilbert | 2017-01-12 21:49:56 -0500 |
commit | c199d2e55d4a003f7941763cd9f8f999c07c557e (patch) | |
tree | b4a87d2f7f2e53763bc627587dc67e2c91f724b3 | |
parent | 804058eb210879d90cd4db3e457678d650e37603 (diff) | |
download | scummvm-rg350-c199d2e55d4a003f7941763cd9f8f999c07c557e.tar.gz scummvm-rg350-c199d2e55d4a003f7941763cd9f8f999c07c557e.tar.bz2 scummvm-rg350-c199d2e55d4a003f7941763cd9f8f999c07c557e.zip |
TITANIC: Stop moving other items during drag operations
-rw-r--r-- | engines/titanic/input_handler.cpp | 2 |
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; |