[Scummvm-git-logs] scummvm master -> 6cea9c4382e8f628415bb626b12cbdd09ca7ba1a

dreammaster dreammaster at scummvm.org
Thu Jan 12 03:24:25 CET 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6cea9c4382 TITANIC: Fix leaving restaurant table close-up


Commit: 6cea9c4382e8f628415bb626b12cbdd09ca7ba1a
    https://github.com/scummvm/scummvm/commit/6cea9c4382e8f628415bb626b12cbdd09ca7ba1a
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-01-11T21:24:19-05:00

Commit Message:
TITANIC: Fix leaving restaurant table close-up

Changed paths:
    engines/titanic/moves/restaurant_pan_handler.cpp


diff --git a/engines/titanic/moves/restaurant_pan_handler.cpp b/engines/titanic/moves/restaurant_pan_handler.cpp
index d93e331..58305fd 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;
 }
 





More information about the Scummvm-git-logs mailing list