[Scummvm-cvs-logs] scummvm master -> 4f740bb224a310567e060c06d7d010d14a195b66

dreammaster dreammaster at scummvm.org
Fri Mar 9 12:50:15 CET 2012


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:
4f740bb224 TSAGE: Bugfix for breaker box display in Blue Force scene 910


Commit: 4f740bb224a310567e060c06d7d010d14a195b66
    https://github.com/scummvm/scummvm/commit/4f740bb224a310567e060c06d7d010d14a195b66
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2012-03-09T03:49:27-08:00

Commit Message:
TSAGE: Bugfix for breaker box display in Blue Force scene 910

This fixes one of the problems in bug #3500015

Changed paths:
    engines/tsage/blue_force/blueforce_scenes9.cpp



diff --git a/engines/tsage/blue_force/blueforce_scenes9.cpp b/engines/tsage/blue_force/blueforce_scenes9.cpp
index e364525..dbea175 100644
--- a/engines/tsage/blue_force/blueforce_scenes9.cpp
+++ b/engines/tsage/blue_force/blueforce_scenes9.cpp
@@ -1285,9 +1285,9 @@ bool Scene910::Object13::startAction(CursorType action, Event &event) {
 		}
 
 		if (_mode != 1)
-			BF_GLOBALS._breakerBoxStatusArr[_state - 1] = (_state + 251) % 256;
+			BF_GLOBALS._breakerBoxStatusArr[_state - 1] = (_frame + 251) % 256;
 		else
-			BF_GLOBALS._breakerBoxStatusArr[_state - 1] = _state;
+			BF_GLOBALS._breakerBoxStatusArr[_state - 1] = _frame;
 
 		switch (_state) {
 		case 1:






More information about the Scummvm-git-logs mailing list