aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/messages
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-24 22:09:49 -0400
committerPaul Gilbert2016-03-24 22:09:49 -0400
commit02b46202bec88eb21b322fb9480de9eb8965dd01 (patch)
treebea7cd9ed24fedd7eda3ada5f3a06f4fa9652ed0 /engines/titanic/messages
parentf0a6cf38cff8e79a579454af5bf22d264de3d7f7 (diff)
downloadscummvm-rg350-02b46202bec88eb21b322fb9480de9eb8965dd01.tar.gz
scummvm-rg350-02b46202bec88eb21b322fb9480de9eb8965dd01.tar.bz2
scummvm-rg350-02b46202bec88eb21b322fb9480de9eb8965dd01.zip
TITANIC: Implementing more CTelevision message handlers
Diffstat (limited to 'engines/titanic/messages')
-rw-r--r--engines/titanic/messages/messages.h2
-rw-r--r--engines/titanic/messages/pet_messages.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/messages/messages.h b/engines/titanic/messages/messages.h
index b7a7cd6e7b..493152b299 100644
--- a/engines/titanic/messages/messages.h
+++ b/engines/titanic/messages/messages.h
@@ -252,7 +252,7 @@ public:
return dest != nullptr && dest->handleMessage(*this); \
} }
-MESSAGE1(CActMsg, CString, value, "");
+MESSAGE1(CActMsg, CString, action, "");
MESSAGE1(CActivationmsg, CString, value, "");
MESSAGE1(CAddHeadPieceMsg, CString, value, "NULL");
MESSAGE1(CAnimateMaitreDMsg, int, value, 0);
diff --git a/engines/titanic/messages/pet_messages.h b/engines/titanic/messages/pet_messages.h
index caca53dfee..7e39056742 100644
--- a/engines/titanic/messages/pet_messages.h
+++ b/engines/titanic/messages/pet_messages.h
@@ -40,7 +40,7 @@ MESSAGE0(CPETReceiveMsg);
MESSAGE0(CPETSetStarDestinationMsg);
MESSAGE1(CPETStarFieldLockMsg, int, value, 0);
MESSAGE0(CPETStereoFieldOnOffMsg);
-MESSAGE2(CPETTargetMsg, CString, strValue, "", int, numValue, -1);
+MESSAGE2(CPETTargetMsg, CString, name, "", int, numValue, -1);
#define PET_MESSAGE(NAME) MSGTARGET(NAME); \
class NAME: public CPETTargetMsg { \