diff options
author | Paul Gilbert | 2016-11-06 21:24:42 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-11-06 21:24:42 -0500 |
commit | 0c7c72b75073910ba2e2ef32f5259f39d8ed2503 (patch) | |
tree | 1cfd8556a4e1ac14f36161b57d3cda612bccbe47 | |
parent | 11f9af68c94303d29b420f53414d9a8fc840b328 (diff) | |
download | scummvm-rg350-0c7c72b75073910ba2e2ef32f5259f39d8ed2503.tar.gz scummvm-rg350-0c7c72b75073910ba2e2ef32f5259f39d8ed2503.tar.bz2 scummvm-rg350-0c7c72b75073910ba2e2ef32f5259f39d8ed2503.zip |
TITANIC: Fix showing movie clip of BellBot arriving
-rw-r--r-- | engines/titanic/game_state.cpp | 1 | ||||
-rw-r--r-- | engines/titanic/npcs/bellbot.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/engines/titanic/game_state.cpp b/engines/titanic/game_state.cpp index 8eae028387..ecff021266 100644 --- a/engines/titanic/game_state.cpp +++ b/engines/titanic/game_state.cpp @@ -35,7 +35,6 @@ bool CGameStateMovieList::clear() { ++i; } else { i = erase(i); - delete movieItem; } } diff --git a/engines/titanic/npcs/bellbot.cpp b/engines/titanic/npcs/bellbot.cpp index 25fa7eb3ea..2514d20df6 100644 --- a/engines/titanic/npcs/bellbot.cpp +++ b/engines/titanic/npcs/bellbot.cpp @@ -79,7 +79,7 @@ bool CBellBot::OnSummonBotMsg(COnSummonBotMsg *msg) { for (idx = 0; idx < 8; ++idx) { if (compareRoomNameTo(ROOM_WAVES[idx][0])) { playSound(ROOM_WAVES[idx][1]); - + break; } } if (idx == 8) |