[Scummvm-cvs-logs] scummvm master -> a67dbd5adb3ab012a2de0b187f62c43fabfd30fe

dreammaster dreammaster at scummvm.org
Wed May 4 11:21:20 CEST 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:
a67dbd5adb TSAGE: Bugfix for skipping cutscenes correctly


Commit: a67dbd5adb3ab012a2de0b187f62c43fabfd30fe
    https://github.com/scummvm/scummvm/commit/a67dbd5adb3ab012a2de0b187f62c43fabfd30fe
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-05-04T02:19:36-07:00

Commit Message:
TSAGE: Bugfix for skipping cutscenes correctly

Changed paths:
    engines/tsage/converse.cpp



diff --git a/engines/tsage/converse.cpp b/engines/tsage/converse.cpp
index bb218f1..46ca557 100644
--- a/engines/tsage/converse.cpp
+++ b/engines/tsage/converse.cpp
@@ -741,8 +741,8 @@ void StripManager::process(Event &event) {
 	if ((event.eventType == EVENT_KEYPRESS) && (event.kbd.keycode == Common::KEYCODE_ESCAPE)) {
 		if (_obj44Index != 10000) {
 			int currIndex = _obj44Index;
-			while (!_obj44List[_obj44Index + 1]._id) {
-				_obj44Index = getNewIndex(_obj44List[_obj44Index]._id);
+			while (!_obj44List[_obj44Index]._list[1]._id) {
+				_obj44Index = getNewIndex(_obj44List[_obj44Index]._list[0]._id);
 				if ((_obj44Index < 0) || (_obj44Index == 10000))
 					break;
 				currIndex = _obj44Index;






More information about the Scummvm-git-logs mailing list