From 08c5d37da495538e5a4b634ec5a705ec305a97bc Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 15 Jun 2010 10:23:58 +0000 Subject: Drascula: Fix bug #2827166. Bug #2827166: "DRASCULA: Repeating conversations". It looked like bug in original engine. svn-id: r49720 --- engines/drascula/converse.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/drascula/converse.cpp b/engines/drascula/converse.cpp index 7c845fb251..0e70348148 100644 --- a/engines/drascula/converse.cpp +++ b/engines/drascula/converse.cpp @@ -283,7 +283,8 @@ void DrasculaEngine::converse(int index) { void DrasculaEngine::response(int function) { debug(4, "response(%d)", function); - playTalkSequence(function); + if (function != 31) + playTalkSequence(function); if (currentChapter == 2) { if (function == 16 || function == 20 || function == 23 || function == 29 || function == 31) -- cgit v1.2.3