[Scummvm-cvs-logs] scummvm master -> 5a26fdb61cedbc8b10a39b3d3c4fc497af0d5225

Strangerke Strangerke at scummvm.org
Wed Dec 4 23:53:16 CET 2013


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:
5a26fdb61c TSAGE: R2R - Fix original bug in scene 1337


Commit: 5a26fdb61cedbc8b10a39b3d3c4fc497af0d5225
    https://github.com/scummvm/scummvm/commit/5a26fdb61cedbc8b10a39b3d3c4fc497af0d5225
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-12-04T14:51:55-08:00

Commit Message:
TSAGE: R2R - Fix original bug in scene 1337

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 98d60da..1d7f882 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
@@ -5815,7 +5815,8 @@ void Scene1337::subCDB90(int arg1, Common::Point pt) {
 	}
 
 	if (subC2BF8(&_gameBoardSide[2]._delayCard, pt)) {
-		if (_gameBoardSide[0]._delayCard._cardId != 0) {
+		// The original uses _gameBoardSide[0], which is obviously a bug.
+		if (_gameBoardSide[2]._delayCard._cardId != 0) {
 			actionDisplay(1330, 39, 159, 10, 1, 200, 0, 7, 0, 154, 154);
 		} else {
 			actionDisplay(1330, 11, 159, 10, 1, 200, 0, 7, 0, 154, 154);






More information about the Scummvm-git-logs mailing list