diff options
author | Paul Gilbert | 2016-08-17 19:00:18 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-08-17 19:00:18 -0400 |
commit | c628f7224f336e353d56990977d3683d905877ab (patch) | |
tree | 50e991c12936e3d27e5fbbeafeebcec168f2db3b /engines/titanic/carry | |
parent | 75f6d1fa5b4a413818457fd9d373054405dd7129 (diff) | |
download | scummvm-rg350-c628f7224f336e353d56990977d3683d905877ab.tar.gz scummvm-rg350-c628f7224f336e353d56990977d3683d905877ab.tar.bz2 scummvm-rg350-c628f7224f336e353d56990977d3683d905877ab.zip |
TITANIC: Implemented CCage class
Diffstat (limited to 'engines/titanic/carry')
-rw-r--r-- | engines/titanic/carry/carry_parrot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/carry/carry_parrot.cpp b/engines/titanic/carry/carry_parrot.cpp index cf96204122..8a453e348c 100644 --- a/engines/titanic/carry/carry_parrot.cpp +++ b/engines/titanic/carry/carry_parrot.cpp @@ -111,7 +111,7 @@ bool CCarryParrot::MouseDragEndMsg(CMouseDragEndMsg *msg) { if (compareViewNameTo("ParrotLobby.Node 1.N")) { if (msg->_mousePos.x >= 75 && msg->_mousePos.x <= 565 && - !CParrot::_v2 && !CCage::_v2) { + !CParrot::_v2 && !CCage::_open) { setVisible(false); _fieldE0 = 0; CTreeItem *perchedParrot = findUnder(getRoot(), "PerchedParrot"); |