[Scummvm-cvs-logs] scummvm master -> 7046e0951370eb907f4d11ecc6bb1b48424ef8bb

Strangerke arnaud.boutonne at gmail.com
Fri Apr 29 01:10:22 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:
7046e09513 TSAGE: Fix bug in scene 4025 "The comet is turn in the wrong sense, screwing the palette animation"


Commit: 7046e0951370eb907f4d11ecc6bb1b48424ef8bb
    https://github.com/scummvm/scummvm/commit/7046e0951370eb907f4d11ecc6bb1b48424ef8bb
Author: strangerke (arnaud.boutonne at gmail.com)
Date: 2011-04-28T16:09:22-07:00

Commit Message:
TSAGE: Fix bug in scene 4025 "The comet is turn in the wrong sense, screwing the palette animation"

Changed paths:
    engines/tsage/ringworld_scenes5.cpp



diff --git a/engines/tsage/ringworld_scenes5.cpp b/engines/tsage/ringworld_scenes5.cpp
index 4ad21dd..172c2fc 100644
--- a/engines/tsage/ringworld_scenes5.cpp
+++ b/engines/tsage/ringworld_scenes5.cpp
@@ -700,7 +700,6 @@ void Scene4000::Hotspot::doAction(int action) {
 
 		if (_globals->_sceneObjects->contains(&scene->_hotspot8)) {
 			scene->_hotspot8.setAction(NULL);
-//			ADD_MOVER_NULL(scene->_hotspot8, 118, 145);
 			Common::Point pt(118, 145);
 			NpcMover *mover = new NpcMover();
 			scene->_hotspot18.addMover(mover, &pt, NULL);
@@ -1531,6 +1530,7 @@ void Scene4025::postInit(SceneObjectList *OwnerList) {
 	_peg5.setFrame(5);
 	_peg5.hide();
 
+	// Hole N-W
 	_hole1.postInit();
 	_hole1.setVisage(4025);
 	_hole1.setStrip(1);
@@ -1540,6 +1540,7 @@ void Scene4025::postInit(SceneObjectList *OwnerList) {
 	_hole1._newPosition = Common::Point(123, 44);
 	_hole1._armStrip = 8;
 
+	// Hole N-E
 	_hole2.postInit();
 	_hole2.setVisage(4025);
 	_hole2.setStrip(1);
@@ -1549,6 +1550,7 @@ void Scene4025::postInit(SceneObjectList *OwnerList) {
 	_hole2._newPosition = Common::Point(166, 44);
 	_hole2._armStrip = 7;
 
+	// Hole Center
 	_hole3.postInit();
 	_hole3.setVisage(4025);
 	_hole3.setStrip(1);
@@ -1558,15 +1560,17 @@ void Scene4025::postInit(SceneObjectList *OwnerList) {
 	_hole3._newPosition = Common::Point(145, 60);
 	_hole3._armStrip = 6;
 
+	// Hole S-W
 	_hole4.postInit();
 	_hole4.setVisage(4025);
 	_hole4.setStrip(1);
-	_hole4.setFrame2(6);
+	_hole4.setFrame2(9);
 	_hole4.setPosition(Common::Point(123, 87));
 	_hole4._pegPtr = NULL;
 	_hole4._newPosition = Common::Point(123, 80);
 	_hole4._armStrip = 5;
 
+	// Hole S-E
 	_hole5.postInit();
 	_hole5.setVisage(4025);
 	_hole5.setStrip(1);






More information about the Scummvm-git-logs mailing list