diff options
author | Paul Gilbert | 2016-11-01 23:38:41 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-11-01 23:38:41 -0400 |
commit | 26ba577aa5fb8d8855de5e0f0b38b9944b95f859 (patch) | |
tree | 1596fd011528f48dd8597a28497cc8010945f8ce | |
parent | 566742d4456446d154a4a5813b4f11c9937577f7 (diff) | |
download | scummvm-rg350-26ba577aa5fb8d8855de5e0f0b38b9944b95f859.tar.gz scummvm-rg350-26ba577aa5fb8d8855de5e0f0b38b9944b95f859.tar.bz2 scummvm-rg350-26ba577aa5fb8d8855de5e0f0b38b9944b95f859.zip |
TITANIC: Fix Deskbot startup animation
-rw-r--r-- | engines/titanic/npcs/deskbot.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/titanic/npcs/deskbot.cpp b/engines/titanic/npcs/deskbot.cpp index 083ed799ed..daa2e55fa1 100644 --- a/engines/titanic/npcs/deskbot.cpp +++ b/engines/titanic/npcs/deskbot.cpp @@ -78,7 +78,9 @@ void CDeskbot::load(SimpleFile *file) { bool CDeskbot::TurnOn(CTurnOn *msg) { if (!_deskbotActive) { setVisible(true); - playClip("BellRinging", MOVIE_NOTIFY_OBJECT); + playClip("BellRinging"); + playClip("Opening", MOVIE_NOTIFY_OBJECT); + playSound("b#69.wav"); petSetArea(PET_CONVERSATION); |