From e5ef7a63982523e109d82f5949db6757816c036d Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Thu, 8 Dec 2016 22:38:25 +0000 Subject: DRASCULA: Fix bug when talking to drunkard in chapter 2 The bug made it possible to only talk once to the drunkard. Any further attempt to talk to him did nothing. This led to a dead end if we did not ask about Von Braun the first time around. This was a bug in ScummVM. The original game did not have the bug. --- engines/drascula/animation.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'engines/drascula') diff --git a/engines/drascula/animation.cpp b/engines/drascula/animation.cpp index 8b3299aaa9..792b2720a9 100644 --- a/engines/drascula/animation.cpp +++ b/engines/drascula/animation.cpp @@ -1836,6 +1836,8 @@ void DrasculaEngine::animation_13_2() { if (flags[41] == 0) { playTalkSequence(13); // sequence 13, chapter 2 + } else { + converse(2); } loadPic(964, frontSurface); -- cgit v1.2.3