[Scummvm-cvs-logs] scummvm master -> 078b738c5becbaac6400f2e57a2cf30b8b071d36

Strangerke Strangerke at scummvm.org
Sun Feb 9 00:22:25 CET 2014


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:
078b738c5b TSAGE: BF - Remove a redundant check on the previous scene number in scene 900


Commit: 078b738c5becbaac6400f2e57a2cf30b8b071d36
    https://github.com/scummvm/scummvm/commit/078b738c5becbaac6400f2e57a2cf30b8b071d36
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-02-08T15:20:39-08:00

Commit Message:
TSAGE: BF - Remove a redundant check on the previous scene number in scene 900

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



diff --git a/engines/tsage/blue_force/blueforce_scenes9.cpp b/engines/tsage/blue_force/blueforce_scenes9.cpp
index 405a436..a3dd368 100644
--- a/engines/tsage/blue_force/blueforce_scenes9.cpp
+++ b/engines/tsage/blue_force/blueforce_scenes9.cpp
@@ -516,7 +516,7 @@ void Scene900::postInit(SceneObjectList *OwnerList) {
 	_door.setPosition(Common::Point(847, 45));
 	_door._flag = 1;
 
-	if ((BF_GLOBALS._sceneManager._previousScene == 880) || (BF_GLOBALS._sceneManager._previousScene != 910)) {
+	if (BF_GLOBALS._sceneManager._previousScene != 910) {
 		BF_GLOBALS._walkRegions.disableRegion(26);
 		BF_GLOBALS._player.disableControl();
 		if (BF_GLOBALS._bookmark == bFinishedWGreen) {






More information about the Scummvm-git-logs mailing list