diff options
author | Paul Gilbert | 2017-06-10 22:13:17 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-06-10 22:13:17 -0400 |
commit | b5ac7cc3ed3e9b993f84ecd5619771ac92ffba79 (patch) | |
tree | 5cda10fa84b470bc98e35c8882891d79da757528 /engines/titanic/npcs | |
parent | 3b8a7a7f254c89fcbb0176a6a2c59dad33de9aec (diff) | |
download | scummvm-rg350-b5ac7cc3ed3e9b993f84ecd5619771ac92ffba79.tar.gz scummvm-rg350-b5ac7cc3ed3e9b993f84ecd5619771ac92ffba79.tar.bz2 scummvm-rg350-b5ac7cc3ed3e9b993f84ecd5619771ac92ffba79.zip |
TITANIC: Fix BellBot getting clipped incorrectly when walking off-screen
Diffstat (limited to 'engines/titanic/npcs')
-rw-r--r-- | engines/titanic/npcs/bellbot.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/titanic/npcs/bellbot.cpp b/engines/titanic/npcs/bellbot.cpp index 1782161aea..327d24eb1e 100644 --- a/engines/titanic/npcs/bellbot.cpp +++ b/engines/titanic/npcs/bellbot.cpp @@ -144,6 +144,7 @@ bool CBellBot::Use(CUse *msg) { bool CBellBot::DismissBotMsg(CDismissBotMsg *msg) { if (_npcFlags & NPCFLAG_MOVING) { playClip("Walk Off", MOVIE_NOTIFY_OBJECT | MOVIE_WAIT_FOR_FINISH); + movieEvent(); if (_npcFlags & NPCFLAG_START_IDLING) { _npcFlags &= ~NPCFLAG_START_IDLING; performAction(true); |