[Scummvm-cvs-logs] scummvm master -> 6d2f53a63c7f9c4d14b88629f7c644b6f9fd3644

Strangerke Strangerke at scummvm.org
Sat Aug 3 13:20:08 CEST 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:
6d2f53a63c MORTEVIELLE: Fix error in c79ce89680d2c46e468152791a46f2700d04b336


Commit: 6d2f53a63c7f9c4d14b88629f7c644b6f9fd3644
    https://github.com/scummvm/scummvm/commit/6d2f53a63c7f9c4d14b88629f7c644b6f9fd3644
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-08-03T04:18:34-07:00

Commit Message:
MORTEVIELLE: Fix error in c79ce89680d2c46e468152791a46f2700d04b336

Changed paths:
    engines/mortevielle/actions.cpp



diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp
index 6a368f6..3638847 100644
--- a/engines/mortevielle/actions.cpp
+++ b/engines/mortevielle/actions.cpp
@@ -607,7 +607,7 @@ void MortevielleEngine::fctOpen() {
 			_coreVar._faithScore += 2;
 		++_openObjCount;
 		int i;
-		for (i = 1; !(i <= 6) && (_openObjects[i] != 0) && (_openObjects[i] != _num); i++)
+		for (i = 1; (i <= 6) && (_openObjects[i] != 0) && (_openObjects[i] != _num); i++)
 			;
 		if (_openObjects[i] != _num) {
 			if (!( ((_num == 3) && ((_coreVar._currPlace == OWN_ROOM)
@@ -1135,8 +1135,8 @@ void MortevielleEngine::fctEnter() {
 	else if (_roomDoorId == OWN_ROOM)
 		_crep = 997;
 	else if ((_roomDoorId == ROOM9) && (_coreVar._selectedObjectId != 136)) {
-			_crep = 189;
-			_coreVar._availableQuestion[8] = '*';
+		_crep = 189;
+		_coreVar._availableQuestion[8] = '*';
 	} else {
 		int z = 0;
 		if (!_blo)






More information about the Scummvm-git-logs mailing list