[Scummvm-cvs-logs] scummvm master -> 9751d6ded4067f6de5b70aa61d4391b64be9e04c

Strangerke Strangerke at scummvm.org
Mon Dec 26 07:22:20 CET 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:
9751d6ded4 TSAGE: R2R - Scene 3700: Fix a couple of bugs


Commit: 9751d6ded4067f6de5b70aa61d4391b64be9e04c
    https://github.com/scummvm/scummvm/commit/9751d6ded4067f6de5b70aa61d4391b64be9e04c
Author: Strangerke (strangerke at scummvm.org)
Date: 2011-12-25T22:21:48-08:00

Commit Message:
TSAGE: R2R - Scene 3700: Fix a couple of bugs

Thanks to Fingolfin for pointing those out

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



diff --git a/engines/tsage/ringworld2/ringworld2_scenes3.cpp b/engines/tsage/ringworld2/ringworld2_scenes3.cpp
index e3d2869..adcd86e 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes3.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes3.cpp
@@ -1862,7 +1862,7 @@ void Scene3400::signal() {
 		_actor4.setStrip(1);
 		_sceneMode = 3403;
 		if (R2_GLOBALS._player._characterIndex == 2)
-			setAction(&_sequenceManager, this, 3403, R2_GLOBALS._player, &_actor3, &_actor7, NULL);
+			setAction(&_sequenceManager, this, 3403, &R2_GLOBALS._player, &_actor3, &_actor7, NULL);
 		else 
 			setAction(&_sequenceManager, this, 3403, &_actor1, &_actor3, &_actor7, NULL);
 		break;
@@ -1871,7 +1871,7 @@ void Scene3400::signal() {
 		_actor4.setStrip(1);
 		_sceneMode = 3405;
 		if (R2_GLOBALS._player._characterIndex == 3)
-			setAction(&_sequenceManager, this, 3405, R2_GLOBALS._player, &_actor7, NULL);
+			setAction(&_sequenceManager, this, 3405, &R2_GLOBALS._player, &_actor7, NULL);
 		else 
 			setAction(&_sequenceManager, this, 3405, &_actor2, &_actor7, NULL);
 		break;






More information about the Scummvm-git-logs mailing list