diff options
author | Paul Gilbert | 2007-10-24 10:04:24 +0000 |
---|---|---|
committer | Paul Gilbert | 2007-10-24 10:04:24 +0000 |
commit | 9a1b13e9653dcafaaa9cc33cb4d4e4639364de25 (patch) | |
tree | b29e02e119a3b256c0cda7a688ed6ff33966bd64 | |
parent | 5635256f308c8687ceea0e8f6280e4e575c90fed (diff) | |
download | scummvm-rg350-9a1b13e9653dcafaaa9cc33cb4d4e4639364de25.tar.gz scummvm-rg350-9a1b13e9653dcafaaa9cc33cb4d4e4639364de25.tar.bz2 scummvm-rg350-9a1b13e9653dcafaaa9cc33cb4d4e4639364de25.zip |
Changed startSpeakingToNoone to pause the speaking character
svn-id: r29252
-rw-r--r-- | engines/lure/scripts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/scripts.cpp b/engines/lure/scripts.cpp index 31ed7acfbd..38e577d2d6 100644 --- a/engines/lure/scripts.cpp +++ b/engines/lure/scripts.cpp @@ -247,7 +247,7 @@ void Script::startSpeakingToNoone(uint16 characterId, uint16 stringId, uint16 v3 Hotspot *charHotspot = res.getActiveHotspot(characterId); assert(charHotspot); - charHotspot->converse(NOONE_ID, stringId, false); + charHotspot->converse(NOONE_ID, stringId, true); } // Stops playing the specified sound index |