[Scummvm-cvs-logs] scummvm master -> 0c3ef4bbe48e4c0268869d0badad3df7b53262ba

Strangerke arnaud.boutonne at gmail.com
Fri May 13 22:39:40 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:
0c3ef4bbe4 TSAGE: Fix bug "Scene 7000: When the ship is landing, the reactor fire is at the wrong place"


Commit: 0c3ef4bbe48e4c0268869d0badad3df7b53262ba
    https://github.com/scummvm/scummvm/commit/0c3ef4bbe48e4c0268869d0badad3df7b53262ba
Author: strangerke (arnaud.boutonne at gmail.com)
Date: 2011-05-13T13:38:40-07:00

Commit Message:
TSAGE: Fix bug "Scene 7000: When the ship is landing, the reactor fire is at the wrong place"

Changed paths:
    engines/tsage/ringworld_scenes8.cpp



diff --git a/engines/tsage/ringworld_scenes8.cpp b/engines/tsage/ringworld_scenes8.cpp
index e193c01..522a4a8 100644
--- a/engines/tsage/ringworld_scenes8.cpp
+++ b/engines/tsage/ringworld_scenes8.cpp
@@ -111,7 +111,7 @@ void Scene7000::Action3::dispatch() {
 
 	Action::dispatch();
 	if (_actionIndex == 4)
-		scene->_object4.setPosition(scene->_object3._position);
+		scene->_object4.setPosition(Common::Point(scene->_object3._position.x, scene->_object3._position.y + 15));
 }
 
 /*--------------------------------------------------------------------------*/






More information about the Scummvm-git-logs mailing list