[Scummvm-cvs-logs] scummvm master -> 6316e91a8cc0d7668efbc8bb619638d4eca06776

Strangerke Strangerke at scummvm.org
Mon Oct 6 01:02:57 CEST 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:
6316e91a8c TSAGE: R2R - Fix position of stock pile after the first shuffle


Commit: 6316e91a8cc0d7668efbc8bb619638d4eca06776
    https://github.com/scummvm/scummvm/commit/6316e91a8cc0d7668efbc8bb619638d4eca06776
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-10-06T01:00:59+02:00

Commit Message:
TSAGE: R2R - Fix position of stock pile after the first shuffle

Changed paths:
    engines/tsage/ringworld2/ringworld2_scenes1.cpp



diff --git a/engines/tsage/ringworld2/ringworld2_scenes1.cpp b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
index 501387a..16925e0 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
@@ -2524,7 +2524,7 @@ void Scene1337::Action1::signal() {
 		scene->_gameBoardSide[0]._outpostStation[1]._card.remove();
 
 		scene->_stockPile.setup(1332, 5, 1);
-		scene->_stockPile.setPosition(Common::Point(165, 95));
+		scene->_stockPile.setPosition(Common::Point(162, 95));
 		scene->_stockPile.setPriority(110);
 		scene->_stockPile._effect = EFFECT_SHADED;
 		scene->_stockPile.show();
@@ -3732,6 +3732,7 @@ void Scene1337::Action7::signal() {
 	}
 }
 
+//Remove a delay card
 void Scene1337::Action8::signal() {
 	Scene1337 *scene = (Scene1337 *)R2_GLOBALS._sceneManager._scene;
 






More information about the Scummvm-git-logs mailing list