diff options
author | Paul Gilbert | 2016-02-26 19:45:30 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-02-26 19:45:30 -0500 |
commit | 859c30a4e1129cc3d1b5d4e4a0660229a16dfd24 (patch) | |
tree | 2e0a847ec4a417ab53ee3dcf046d7ec86b821ed7 /engines/titanic/core | |
parent | 1a98b49f607a9dcf133f54c0e133fb774def4a7c (diff) | |
download | scummvm-rg350-859c30a4e1129cc3d1b5d4e4a0660229a16dfd24.tar.gz scummvm-rg350-859c30a4e1129cc3d1b5d4e4a0660229a16dfd24.tar.bz2 scummvm-rg350-859c30a4e1129cc3d1b5d4e4a0660229a16dfd24.zip |
TITANIC: Implemented CTelevision
Diffstat (limited to 'engines/titanic/core')
-rw-r--r-- | engines/titanic/core/saveable_object.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/titanic/core/saveable_object.cpp b/engines/titanic/core/saveable_object.cpp index 1cbae873db..a52b53da05 100644 --- a/engines/titanic/core/saveable_object.cpp +++ b/engines/titanic/core/saveable_object.cpp @@ -40,6 +40,7 @@ #include "titanic/game/room_item.h" #include "titanic/game/service_elevator_door.h" #include "titanic/game/sub_glass.h" +#include "titanic/game/television.h" #include "titanic/messages/auto_sound_event.h" #include "titanic/messages/door_auto_sound_event.h" @@ -100,6 +101,7 @@ DEFFN(CPETPosition); DEFFN(CRoomItem); DEFFN(CServiceElevatorDoor); DEFFN(CSUBGlass); +DEFFN(CTelevision); DEFFN(CAutoSoundEvent); DEFFN(CDoorAutoSoundEvent); @@ -154,6 +156,7 @@ void CSaveableObject::initClassList() { ADDFN(CRoomItem); ADDFN(CServiceElevatorDoor); ADDFN(CSUBGlass); + ADDFN(CTelevision); ADDFN(CAutoSoundEvent); ADDFN(CDoorAutoSoundEvent); |