[Scummvm-cvs-logs] scummvm master -> ad0138349d319a5af28c1ee1ea978738123d2ebf

dreammaster dreammaster at scummvm.org
Sun Oct 9 14:05:58 CEST 2011


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:
ad0138349d TSAGE: Bugfix for Blue Force scene 300 - Leaving police station when off duty


Commit: ad0138349d319a5af28c1ee1ea978738123d2ebf
    https://github.com/scummvm/scummvm/commit/ad0138349d319a5af28c1ee1ea978738123d2ebf
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-10-09T04:58:41-07:00

Commit Message:
TSAGE: Bugfix for Blue Force scene 300 - Leaving police station when off duty

Changed paths:
    engines/tsage/blue_force/blueforce_scenes3.cpp



diff --git a/engines/tsage/blue_force/blueforce_scenes3.cpp b/engines/tsage/blue_force/blueforce_scenes3.cpp
index 5f88a37..5017b97 100644
--- a/engines/tsage/blue_force/blueforce_scenes3.cpp
+++ b/engines/tsage/blue_force/blueforce_scenes3.cpp
@@ -563,7 +563,7 @@ void Scene300::dispatch() {
 			setAction(&_action2);
 
 		if (BF_GLOBALS._player._position.x >= 315) {
-			if (BF_GLOBALS.getFlag(onDuty) || (BF_GLOBALS._bookmark == bNone) || !BF_GLOBALS.getFlag(fWithLyle)) {
+			if (BF_GLOBALS.getFlag(onDuty) || (BF_GLOBALS._bookmark == bNone) || BF_GLOBALS.getFlag(fWithLyle)) {
 				setAction(&_action1);
 			} else {
 				BF_GLOBALS._player.disableControl();






More information about the Scummvm-git-logs mailing list