[Scummvm-git-logs] scummvm master -> 7dc50cc41125d457906d0fd018e0fd69277e778d

dreammaster dreammaster at scummvm.org
Thu Jan 12 02:55:16 CET 2017


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

Summary:
7dc50cc411 TITANIC: Fix Barbot response to requesting vision center


Commit: 7dc50cc41125d457906d0fd018e0fd69277e778d
    https://github.com/scummvm/scummvm/commit/7dc50cc41125d457906d0fd018e0fd69277e778d
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-01-11T20:55:09-05:00

Commit Message:
TITANIC: Fix Barbot response to requesting vision center

Changed paths:
    engines/titanic/true_talk/barbot_script.cpp


diff --git a/engines/titanic/true_talk/barbot_script.cpp b/engines/titanic/true_talk/barbot_script.cpp
index 5b77864..d79ebed 100644
--- a/engines/titanic/true_talk/barbot_script.cpp
+++ b/engines/titanic/true_talk/barbot_script.cpp
@@ -1009,7 +1009,7 @@ uint BarbotScript::getDialsBitset() const {
 		bits = 1;
 	if (!getDialRegion(1))
 		bits |= 2;
-	if (!getDialRegion(2))
+	if (getDialRegion(2))
 		bits |= 4;
 
 	return bits;





More information about the Scummvm-git-logs mailing list