diff options
-rw-r--r-- | engines/titanic/game/start_action.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/titanic/game/start_action.cpp b/engines/titanic/game/start_action.cpp index ab356ea1f4..c4f8db8190 100644 --- a/engines/titanic/game/start_action.cpp +++ b/engines/titanic/game/start_action.cpp @@ -50,14 +50,13 @@ void CStartAction::load(SimpleFile *file) { } bool CStartAction::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { - // Dispatch the desired action to the desired target - CActMsg actMsg(_msgAction); - actMsg.execute(_msgTarget); - return true; } bool CStartAction::MouseButtonUpMsg(CMouseButtonUpMsg *msg) { + // Dispatch the desired action to the desired target + CActMsg actMsg(_msgAction); + actMsg.execute(_msgTarget); return true; } |