[Scummvm-cvs-logs] scummvm master -> 64979e696c71b618fe6cc15a1810c43f8ef4d3a1

Strangerke Strangerke at scummvm.org
Sun Oct 12 20:40:53 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:
64979e696c TSAGE: R2R - Fix discard of own selected station when handling the meteor card effect


Commit: 64979e696c71b618fe6cc15a1810c43f8ef4d3a1
    https://github.com/scummvm/scummvm/commit/64979e696c71b618fe6cc15a1810c43f8ef4d3a1
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-10-12T20:38:51+02:00

Commit Message:
TSAGE: R2R - Fix discard of own selected station when handling the meteor card effect

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 2f7424c..a007ded 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
@@ -3950,7 +3950,7 @@ void Scene1337::Action10::signal() {
 
 					for (int i = 0; i <= 7; i++) {
 						if (scene->_gameBoardSide[2]._outpostStation[i].isIn(scene->_selectedCard._stationPos) && (scene->_gameBoardSide[2]._outpostStation[i]._cardId != 0)) {
-							scene->_actionCard2 = &scene->_gameBoardSide[2]._outpostStation[0];
+							scene->_actionCard2 = &scene->_gameBoardSide[2]._outpostStation[i];
 							found2 = true;
 							break;
 						}






More information about the Scummvm-git-logs mailing list