aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/core
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-13 15:30:12 -0400
committerPaul Gilbert2016-03-13 15:30:12 -0400
commit819b773491b728ab0be933ffdcfc333e20d582d3 (patch)
treea86fae67694035ccae76ced14777cb7b668e7eec /engines/titanic/core
parentc92bf22f0331fbdbc7e440b43ae1973b679befb3 (diff)
downloadscummvm-rg350-819b773491b728ab0be933ffdcfc333e20d582d3.tar.gz
scummvm-rg350-819b773491b728ab0be933ffdcfc333e20d582d3.tar.bz2
scummvm-rg350-819b773491b728ab0be933ffdcfc333e20d582d3.zip
TITANIC: Add message generation at end of applicationStarting
Diffstat (limited to 'engines/titanic/core')
-rw-r--r--engines/titanic/core/saveable_object.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/titanic/core/saveable_object.cpp b/engines/titanic/core/saveable_object.cpp
index 449eb9a5fb..3144e60c97 100644
--- a/engines/titanic/core/saveable_object.cpp
+++ b/engines/titanic/core/saveable_object.cpp
@@ -779,6 +779,9 @@ DEFFN(CDropobjectMsg)
DEFFN(CDropZoneGotObjectMsg)
DEFFN(CDropZoneLostObjectMsg)
DEFFN(CEditControlMsg)
+DEFFN(CEnterNodeMsg);
+DEFFN(CEnterRoomMsg);
+DEFFN(CEnterViewMsg);
DEFFN(CEjectCylinderMsg)
DEFFN(CErasePhonographCylinderMsg)
DEFFN(CFreshenCookieMsg)
@@ -1345,6 +1348,9 @@ void CSaveableObject::initClassList() {
ADDFN(CDropZoneGotObjectMsg, CMessage);
ADDFN(CDropZoneLostObjectMsg, CMessage);
ADDFN(CEditControlMsg, CMessage);
+ ADDFN(CEnterNodeMsg, CMessage);
+ ADDFN(CEnterRoomMsg, CMessage);
+ ADDFN(CEnterViewMsg, CMessage);
ADDFN(CEjectCylinderMsg, CMessage);
ADDFN(CErasePhonographCylinderMsg, CMessage);
ADDFN(CFreshenCookieMsg, CMessage);