aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/moves/restaurant_pan_handler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/moves/restaurant_pan_handler.cpp b/engines/titanic/moves/restaurant_pan_handler.cpp
index d93e331254..58305fd6b8 100644
--- a/engines/titanic/moves/restaurant_pan_handler.cpp
+++ b/engines/titanic/moves/restaurant_pan_handler.cpp
@@ -55,8 +55,8 @@ bool CRestaurantPanHandler::ArmPickedUpFromTableMsg(CArmPickedUpFromTableMsg *ms
}
bool CRestaurantPanHandler::MouseButtonDownMsg(CMouseButtonDownMsg *msg) {
- _destination = _armPickedUp ? _armDestination : _armlessDestination;
- changeView(_destination);
+ CString clipName = _armPickedUp ? _armDestination : _armlessDestination;
+ changeView(_destination, clipName);
return true;
}