[Scummvm-cvs-logs] scummvm master -> 49f0ba8d925d084064ef44005fe56add9ce62d1f

Strangerke Strangerke at scummvm.org
Tue Dec 10 07:36:36 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:
49f0ba8d92 TSAGE: R2R - Fix bug in character selection


Commit: 49f0ba8d925d084064ef44005fe56add9ce62d1f
    https://github.com/scummvm/scummvm/commit/49f0ba8d925d084064ef44005fe56add9ce62d1f
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-12-09T22:35:10-08:00

Commit Message:
TSAGE: R2R - Fix bug in character selection

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 cb478b7..f1b907e 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
@@ -4568,7 +4568,7 @@ void Scene1337::subC20F9() {
 	switch (_field424A) {
 	case -1:
 		++_currentPlayerNumb;
-		if (_currentPlayerNumb == 3)
+		if (_currentPlayerNumb > 3)
 			_currentPlayerNumb = 0;
 
 		if (_showPlayerTurn) {






More information about the Scummvm-git-logs mailing list