diff options
author | Paul Gilbert | 2016-08-28 19:10:29 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-08-28 19:10:29 -0400 |
commit | f114f9e8c5c9e663ef1eea268dbc2d2287c6b646 (patch) | |
tree | 646d785a37d0f5ef5f4f39539c240e8035c0c752 /engines/titanic/npcs | |
parent | 01327b540de39eb99c854dd4a61080935c6ba77f (diff) | |
download | scummvm-rg350-f114f9e8c5c9e663ef1eea268dbc2d2287c6b646.tar.gz scummvm-rg350-f114f9e8c5c9e663ef1eea268dbc2d2287c6b646.tar.bz2 scummvm-rg350-f114f9e8c5c9e663ef1eea268dbc2d2287c6b646.zip |
TITANIC: Implemented some stubbed methods
Diffstat (limited to 'engines/titanic/npcs')
-rw-r--r-- | engines/titanic/npcs/bellbot.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/titanic/npcs/bellbot.cpp b/engines/titanic/npcs/bellbot.cpp index ac6881a45c..0170491270 100644 --- a/engines/titanic/npcs/bellbot.cpp +++ b/engines/titanic/npcs/bellbot.cpp @@ -135,8 +135,7 @@ bool CBellBot::MovieEndMsg(CMovieEndMsg *msg) { } bool CBellBot::Use(CUse *msg) { - error("TODO: Figure out what msg->_item points to"); - // msg->_item = "Bellbot"; + dynamic_cast<CCarry *>(msg->_item)->_string1 = "Bellbot"; return true; } |