aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2016-11-01 23:00:07 -0400
committerPaul Gilbert2016-11-01 23:00:07 -0400
commite790b9a5f010d7cb84b148bd02d88bdf24539e23 (patch)
tree62ae9e18861816c0673da77c19748a2006ce33a0
parent0f4ca41dad11b97bc563f55b354db6a8006478a9 (diff)
downloadscummvm-rg350-e790b9a5f010d7cb84b148bd02d88bdf24539e23.tar.gz
scummvm-rg350-e790b9a5f010d7cb84b148bd02d88bdf24539e23.tar.bz2
scummvm-rg350-e790b9a5f010d7cb84b148bd02d88bdf24539e23.zip
TITANIC: Fix log heading for talking to Deskbot
-rw-r--r--engines/titanic/npcs/deskbot.cpp2
-rw-r--r--engines/titanic/pet_control/pet_conversations.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/npcs/deskbot.cpp b/engines/titanic/npcs/deskbot.cpp
index d9324732bc..d3f8d03d6a 100644
--- a/engines/titanic/npcs/deskbot.cpp
+++ b/engines/titanic/npcs/deskbot.cpp
@@ -78,7 +78,7 @@ void CDeskbot::load(SimpleFile *file) {
bool CDeskbot::TurnOn(CTurnOn *msg) {
if (!_deskbotActive) {
setVisible(true);
- playClip("BellRinging", 4);
+ playClip("BellRinging", MOVIE_NOTIFY_OBJECT);
playSound("b#69.wav");
petSetArea(PET_CONVERSATION);
diff --git a/engines/titanic/pet_control/pet_conversations.cpp b/engines/titanic/pet_control/pet_conversations.cpp
index 10b3637547..b534136eaf 100644
--- a/engines/titanic/pet_control/pet_conversations.cpp
+++ b/engines/titanic/pet_control/pet_conversations.cpp
@@ -285,7 +285,7 @@ void CPetConversations::displayNPCName(CGameObject *npc) {
if (name.contains("Doorbot")) {
msg += "the DoorBot";
- } else if (name.contains("DeskBot")) {
+ } else if (name.contains("Deskbot")) {
id = 2;
msg += "the DeskBot";
} else if (name.contains("LiftBot")) {