aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/res.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2007-11-10 22:47:11 +0000
committerPaul Gilbert2007-11-10 22:47:11 +0000
commit24303fb953a41f42cf312a69c1152e4ea56e4f94 (patch)
tree80a204788122b731639f97468c246831ba46f4d6 /engines/lure/res.cpp
parent5908728d4cf02cf4ff5a38496d45e7b8d1fde839 (diff)
downloadscummvm-rg350-24303fb953a41f42cf312a69c1152e4ea56e4f94.tar.gz
scummvm-rg350-24303fb953a41f42cf312a69c1152e4ea56e4f94.tar.bz2
scummvm-rg350-24303fb953a41f42cf312a69c1152e4ea56e4f94.zip
Expanded talk routines so that characters now properly stand still only when they're meant to
svn-id: r29471
Diffstat (limited to 'engines/lure/res.cpp')
-rw-r--r--engines/lure/res.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/lure/res.cpp b/engines/lure/res.cpp
index c8ac511dcf..43c94a6618 100644
--- a/engines/lure/res.cpp
+++ b/engines/lure/res.cpp
@@ -487,12 +487,13 @@ void Resources::setTalkingCharacter(uint16 id) {
HotspotData *charHotspot = res.getHotspot(_talkingCharacter);
assert(charHotspot);
charHotspot->talkCountdown = 0;
-
+/*
if (charHotspot->talkDestCharacterId != 0) {
HotspotData *destHotspot = res.getHotspot(charHotspot->talkDestCharacterId);
if (destHotspot != NULL)
destHotspot->talkDestCharacterId = 0;
}
+*/
charHotspot->talkDestCharacterId = 0;
}