diff options
author | Paul Gilbert | 2016-03-24 22:40:07 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-03-24 22:40:07 -0400 |
commit | 0b37ac18693c7f51212f250b8a9990071a1dda2b (patch) | |
tree | b064d4a5e45d9efd08755425868d31630c2a7e5e /engines/titanic/pet_control | |
parent | 02b46202bec88eb21b322fb9480de9eb8965dd01 (diff) | |
download | scummvm-rg350-0b37ac18693c7f51212f250b8a9990071a1dda2b.tar.gz scummvm-rg350-0b37ac18693c7f51212f250b8a9990071a1dda2b.tar.bz2 scummvm-rg350-0b37ac18693c7f51212f250b8a9990071a1dda2b.zip |
TITANIC: Implementing more CTelevision message handlers
Diffstat (limited to 'engines/titanic/pet_control')
-rw-r--r-- | engines/titanic/pet_control/pet_control.cpp | 4 | ||||
-rw-r--r-- | engines/titanic/pet_control/pet_control.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/engines/titanic/pet_control/pet_control.cpp b/engines/titanic/pet_control/pet_control.cpp index 920e6b24d9..f3e78a2212 100644 --- a/engines/titanic/pet_control/pet_control.cpp +++ b/engines/titanic/pet_control/pet_control.cpp @@ -115,4 +115,8 @@ void CPetControl::fn3(int val) { warning("TODO: CPetControl::fn3"); } +void CPetControl::fn4() { + warning("TODO: CPetControl::fn4"); +} + } // End of namespace Titanic diff --git a/engines/titanic/pet_control/pet_control.h b/engines/titanic/pet_control/pet_control.h index 1beded2453..b0762736fb 100644 --- a/engines/titanic/pet_control/pet_control.h +++ b/engines/titanic/pet_control/pet_control.h @@ -105,6 +105,8 @@ public: void fn2(int val); void fn3(int val); + + void fn4(); }; } // End of namespace Titanic |