aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/carry/central_core.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2017-01-18 20:54:05 -0500
committerPaul Gilbert2017-01-18 20:54:05 -0500
commit12ebe10d0178ecbdec1cc58e165926cb58cb13ff (patch)
tree5c339ba572f89eb0814070d4e8f33f607f0ff5ee /engines/titanic/carry/central_core.cpp
parenta4997f62cc51575b914e15a90923058cb5c58bac (diff)
downloadscummvm-rg350-12ebe10d0178ecbdec1cc58e165926cb58cb13ff.tar.gz
scummvm-rg350-12ebe10d0178ecbdec1cc58e165926cb58cb13ff.tar.bz2
scummvm-rg350-12ebe10d0178ecbdec1cc58e165926cb58cb13ff.zip
TITANIC: Renaming of CParrot statics, miscellaneous fixes
Diffstat (limited to 'engines/titanic/carry/central_core.cpp')
-rw-r--r--engines/titanic/carry/central_core.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/carry/central_core.cpp b/engines/titanic/carry/central_core.cpp
index afc3b85bf0..457428ccfc 100644
--- a/engines/titanic/carry/central_core.cpp
+++ b/engines/titanic/carry/central_core.cpp
@@ -57,9 +57,9 @@ bool CCentralCore::UseWithOtherMsg(CUseWithOtherMsg *msg) {
bool CCentralCore::DropZoneLostObjectMsg(CDropZoneLostObjectMsg *msg) {
CString name = msg->_object->getName();
if (name == "PerchCoreHolder") {
- CParrot::_v2 = 1;
+ CParrot::_takeOff = true;
if (isEquals("CentralCore"))
- CParrot::_v5 = 0;
+ CParrot::_coreReplaced = false;
CActMsg actMsg("LosePerch");
actMsg.execute("ParrotLobbyController");
@@ -75,7 +75,7 @@ bool CCentralCore::DropZoneGotObjectMsg(CDropZoneGotObjectMsg *msg) {
CString name = msg->_object->getName();
if (name == "PerchCoreHolder") {
if (isEquals("CentralCore")) {
- CParrot::_v5 = 1;
+ CParrot::_coreReplaced = true;
CActMsg actMsg("CoreReplaced");
actMsg.execute("ParrotCage");
}