diff options
author | Paul Gilbert | 2016-12-18 10:12:10 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-12-18 10:12:10 -0500 |
commit | 91fd236a530890c8e9b5f1e72c254cebce508f20 (patch) | |
tree | 2aa8c893ef8fd33cec59f97ee2b082dfdefd8928 | |
parent | 0ae74f5a0b7e79ed89b94dc7a66277a8787a98bb (diff) | |
download | scummvm-rg350-91fd236a530890c8e9b5f1e72c254cebce508f20.tar.gz scummvm-rg350-91fd236a530890c8e9b5f1e72c254cebce508f20.tar.bz2 scummvm-rg350-91fd236a530890c8e9b5f1e72c254cebce508f20.zip |
TITANIC: Hide Titania's eye when leaving elevator 4
-rw-r--r-- | engines/titanic/game/transport/lift.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/game/transport/lift.cpp b/engines/titanic/game/transport/lift.cpp index c38e8a96f0..cb5bcf92a0 100644 --- a/engines/titanic/game/transport/lift.cpp +++ b/engines/titanic/game/transport/lift.cpp @@ -273,7 +273,7 @@ bool CLift::LeaveRoomMsg(CLeaveRoomMsg *msg) { CPetControl *pet = getPetControl(); if (pet->getRoomsElevatorNum() == 4 && _v1 == 1 && !_v6) { - CVisibleMsg visibleMsg; + CVisibleMsg visibleMsg(false); visibleMsg.execute("Eye2"); } |