diff options
author | strangerke | 2011-04-18 09:16:15 +0200 |
---|---|---|
committer | strangerke | 2011-04-18 09:16:15 +0200 |
commit | e34739aaef74ec48227ce0bed3990fa4d51147b5 (patch) | |
tree | adea2c8e098f8efe977d31691baa5954ce49a09f | |
parent | da0ade2beddd66f8d531c0b1e7aa86188201d5d4 (diff) | |
download | scummvm-rg350-e34739aaef74ec48227ce0bed3990fa4d51147b5.tar.gz scummvm-rg350-e34739aaef74ec48227ce0bed3990fa4d51147b5.tar.bz2 scummvm-rg350-e34739aaef74ec48227ce0bed3990fa4d51147b5.zip |
TSAGE: Fix a couple of problems in Scene 2320, still broken
-rw-r--r-- | engines/tsage/ringworld_scenes3.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/tsage/ringworld_scenes3.cpp b/engines/tsage/ringworld_scenes3.cpp index 4cfc24022e..1571f18f84 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)); |