diff options
author | Paul Gilbert | 2016-12-20 22:02:43 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-12-20 22:02:43 -0500 |
commit | 8f6f342c3f05375e8a0cd0902bf3373614dacfa0 (patch) | |
tree | fb31aa1243c735f0fb29e9a49362308e85b932c5 | |
parent | 3324b6ade080802acda365f4f2d4e0efe577e102 (diff) | |
download | scummvm-rg350-8f6f342c3f05375e8a0cd0902bf3373614dacfa0.tar.gz scummvm-rg350-8f6f342c3f05375e8a0cd0902bf3373614dacfa0.tar.bz2 scummvm-rg350-8f6f342c3f05375e8a0cd0902bf3373614dacfa0.zip |
TITANIC: Fix dragging chevrons onto the Succubus
-rw-r--r-- | engines/titanic/pet_control/pet_drag_chev.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/titanic/pet_control/pet_drag_chev.cpp b/engines/titanic/pet_control/pet_drag_chev.cpp index 957fe5295c..4b54d3e69c 100644 --- a/engines/titanic/pet_control/pet_drag_chev.cpp +++ b/engines/titanic/pet_control/pet_drag_chev.cpp @@ -59,6 +59,7 @@ bool CPetDragChev::MouseDragEndMsg(CMouseDragEndMsg *msg) { if (succubus) { CSetChevRoomBits chevMsg(_destRoomFlags); chevMsg.execute(succubus); + petMoveToHiddenRoom(); } else { CPetControl *petControl = getPetControl(); if (!petControl || !petControl->contains(msg->_mousePos) |