aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/hotspots.h
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/hotspots.h
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/hotspots.h')
-rw-r--r--engines/lure/hotspots.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/lure/hotspots.h b/engines/lure/hotspots.h
index 348f2454f6..a02df45313 100644
--- a/engines/lure/hotspots.h
+++ b/engines/lure/hotspots.h
@@ -540,10 +540,8 @@ public:
void setVoiceCtr(uint8 v) { _voiceCtr = v; }
// Miscellaneous
- void converse(uint16 destCharacterId, uint16 messageId, bool standStill);
- void converse(uint16 destCharacterId, uint16 messageId) {
- converse(destCharacterId, messageId, false);
- }
+ void converse(uint16 destCharacterId, uint16 messageId, bool srcStandStill = false,
+ bool destStandStill = false);
void showMessage(uint16 messageId, uint16 destCharacterId = NOONE_ID);
void scheduleConverse(uint16 destHotspot, uint16 messageId);
void handleTalkDialog();