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

Strangerke arnaud.boutonne at gmail.com
Mon Apr 18 09:17:11 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:
e34739aaef TSAGE: Fix a couple of problems in Scene 2320, still broken


Commit: e34739aaef74ec48227ce0bed3990fa4d51147b5
    https://github.com/scummvm/scummvm/commit/e34739aaef74ec48227ce0bed3990fa4d51147b5
Author: strangerke (arnaud.boutonne at gmail.com)
Date: 2011-04-18T00:16:15-07:00

Commit Message:
TSAGE: Fix a couple of problems in Scene 2320, still broken

Changed paths:
    engines/tsage/ringworld_scenes3.cpp



diff --git a/engines/tsage/ringworld_scenes3.cpp b/engines/tsage/ringworld_scenes3.cpp
index 4cfc240..1571f18 100644
--- a/engines/tsage/ringworld_scenes3.cpp
+++ b/engines/tsage/ringworld_scenes3.cpp
@@ -5798,7 +5798,7 @@ void Scene2320::postInit(SceneObjectList *OwnerList) {
 		_globals->_sceneItems.push_back(&_hotspot8);
 	}
 
-	_area1.setup(2100, 2, 1, 2150);
+	_area1.setup(2100, 2, 1, 2100);
 	_area1._pt = Common::Point(200, 31);
 	_area2.setup(2153, 3, 1, 2150);
 	_area2._pt = Common::Point(200, 50);
@@ -5812,13 +5812,16 @@ void Scene2320::postInit(SceneObjectList *OwnerList) {
 		_hotspot11.setVisage(2705);
 		_hotspot11._strip = 3;
 		_hotspot11.setPosition(Common::Point(510, 156));
+		_globals->_sceneItems.push_back(&_hotspot11);
 		_hotspot11._state = 0;
 		_hotspot11.setAction(&_action1);
-
-		_globals->_sceneItems.push_back(&_hotspot11);
 	}
 
 	_globals->_player.postInit();
+	if (_globals->getFlag(13))
+		_globals->_player.setVisage(2170);
+	else
+		_globals->_player.setVisage(0);
 	_globals->_player.animate(ANIM_MODE_1, NULL);
 	_globals->_player.setObjectWrapper(new SceneObjectWrapper());
 	_globals->_player.setPosition(Common::Point(320, 79));






More information about the Scummvm-git-logs mailing list