[Scummvm-git-logs] scummvm branch-1-9 -> 4d37a9d6be12adcc1922237911d1be1af216e300

criezy criezy at scummvm.org
Fri Dec 9 00:03:02 CET 2016


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
818e29c27f DRASCULA: Fix bug when talking to drunkard in chapter 2
4d37a9d6be NEWS: Mention Drascula drunkard talk bug fix


Commit: 818e29c27f9cca49bbd3b3e651419784252bc3c3
    https://github.com/scummvm/scummvm/commit/818e29c27f9cca49bbd3b3e651419784252bc3c3
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2016-12-08T23:00:47Z

Commit Message:
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.

Changed paths:
    engines/drascula/animation.cpp


diff --git a/engines/drascula/animation.cpp b/engines/drascula/animation.cpp
index 8b3299a..792b272 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);


Commit: 4d37a9d6be12adcc1922237911d1be1af216e300
    https://github.com/scummvm/scummvm/commit/4d37a9d6be12adcc1922237911d1be1af216e300
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2016-12-08T23:02:32Z

Commit Message:
NEWS: Mention Drascula drunkard talk bug fix

Changed paths:
    NEWS


diff --git a/NEWS b/NEWS
index ac1d043..66f3f85 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,9 @@ For a more comprehensive changelog of the latest experimental code, see:
    - Added bilinear filtering option for SDL2 fullscreen mode.
    - Fixed a bug that caused a crash in the options dialog of the GUI.
 
+ Drascula:
+   - Fixed bug that made it impossible to talk to the drunkard more than once in the inn.
+
  Kyra:
    - Fixed a buffer overflow in Lands of Lore.
 





More information about the Scummvm-git-logs mailing list