diff options
author | Paul Gilbert | 2016-08-09 21:51:19 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-08-09 21:51:19 -0400 |
commit | 668c486f4fdf270a88cfd799ba54871d5a314383 (patch) | |
tree | e7c48a32fb9ff2ce2aa7b739faa3311c9cd52e70 /engines/titanic/npcs | |
parent | 30936a6115160e8e79b3c768c2ee97aae9cbd554 (diff) | |
download | scummvm-rg350-668c486f4fdf270a88cfd799ba54871d5a314383.tar.gz scummvm-rg350-668c486f4fdf270a88cfd799ba54871d5a314383.tar.bz2 scummvm-rg350-668c486f4fdf270a88cfd799ba54871d5a314383.zip |
TITANIC: Implemented more sound related classes
Diffstat (limited to 'engines/titanic/npcs')
-rw-r--r-- | engines/titanic/npcs/true_talk_npc.cpp | 8 | ||||
-rw-r--r-- | engines/titanic/npcs/true_talk_npc.h | 5 |
2 files changed, 0 insertions, 13 deletions
diff --git a/engines/titanic/npcs/true_talk_npc.cpp b/engines/titanic/npcs/true_talk_npc.cpp index 290922f660..9310f285e5 100644 --- a/engines/titanic/npcs/true_talk_npc.cpp +++ b/engines/titanic/npcs/true_talk_npc.cpp @@ -198,14 +198,6 @@ void CTrueTalkNPC::processInput(CTextInputMsg *msg, CViewItem *view) { talkManager->processInput(this, msg, view); } -int CTrueTalkNPC::startAnimTimer(const CString &action, uint firstDuration, uint duration) { - CTimeEventInfo *timer = new CTimeEventInfo(g_vm->_events->getTicksCount(), - duration > 0, firstDuration, duration, this, 0, action); - getGameManager()->addTimer(timer); - - return timer->_id; -} - void CTrueTalkNPC::stopAnimTimer(int id) { getGameManager()->stopTimer(id); } diff --git a/engines/titanic/npcs/true_talk_npc.h b/engines/titanic/npcs/true_talk_npc.h index 0deb832c82..0319f7e059 100644 --- a/engines/titanic/npcs/true_talk_npc.h +++ b/engines/titanic/npcs/true_talk_npc.h @@ -62,11 +62,6 @@ protected: int _field104; protected: void processInput(CTextInputMsg *msg, CViewItem *view); - - /** - * Start an animation timer - */ - int startAnimTimer(const CString &action, uint firstDuration, uint duration); /** * Stop an animation timer |