diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/game/maitred/maitred_prod_receptor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/titanic/game/maitred/maitred_prod_receptor.cpp b/engines/titanic/game/maitred/maitred_prod_receptor.cpp index 6f64a76d7f..c727366993 100644 --- a/engines/titanic/game/maitred/maitred_prod_receptor.cpp +++ b/engines/titanic/game/maitred/maitred_prod_receptor.cpp @@ -61,6 +61,8 @@ bool CMaitreDProdReceptor::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { } bool CMaitreDProdReceptor::MouseMoveMsg(CMouseMoveMsg *msg) { + if (!getDraggingObject()) + return true; if (_fieldBC == 2 && static_cast<CGameObject *>(getParent())->hasActiveMovie()) return false; else if (++_counter < 20) |