[Scummvm-cvs-logs] scummvm master -> 3c77b717b3b12969e77ecc028bed6eb3c6f77c20

Strangerke Strangerke at scummvm.org
Sat Feb 8 19:14:50 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:
3c77b717b3 TSAGE: BF - Remove a redundant check on the previous scene number in scene 360


Commit: 3c77b717b3b12969e77ecc028bed6eb3c6f77c20
    https://github.com/scummvm/scummvm/commit/3c77b717b3b12969e77ecc028bed6eb3c6f77c20
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-02-08T10:13:18-08:00

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

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 feaf789..2800584 100644
--- a/engines/tsage/blue_force/blueforce_scenes3.cpp
+++ b/engines/tsage/blue_force/blueforce_scenes3.cpp
@@ -4438,7 +4438,7 @@ void Scene360::postInit(SceneObjectList *OwnerList) {
 	BF_GLOBALS._player._moveDiff.y = 4;
 	BF_GLOBALS._player.enableControl();
 
-	if ((BF_GLOBALS._sceneManager._previousScene == 355) || (BF_GLOBALS._sceneManager._previousScene != 370)) {
+	if (BF_GLOBALS._sceneManager._previousScene != 370) {
 		BF_GLOBALS._player.setPosition(Common::Point(253, 135));
 		BF_GLOBALS._player.setStrip(2);
 






More information about the Scummvm-git-logs mailing list