[Scummvm-cvs-logs] scummvm master -> 5fdfc0996ca184fe78b930c41afce0031eb1746d

Strangerke Strangerke at scummvm.org
Tue Aug 20 02:15:57 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:
5fdfc0996c MORTEVIELLE: Fix display of the rod and the ball in the attic, when using Self/Put


Commit: 5fdfc0996ca184fe78b930c41afce0031eb1746d
    https://github.com/scummvm/scummvm/commit/5fdfc0996ca184fe78b930c41afce0031eb1746d
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-08-19T17:14:24-07:00

Commit Message:
MORTEVIELLE: Fix display of the rod and the ball in the attic, when using Self/Put

Changed paths:
    engines/mortevielle/actions.cpp



diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp
index c06f19d..d0ecd6c 100644
--- a/engines/mortevielle/actions.cpp
+++ b/engines/mortevielle/actions.cpp
@@ -1002,12 +1002,15 @@ void MortevielleEngine::fctSelfPut() {
 					if (_num == 1) {
 						if (_coreVar._atticBallHoleObjectId != 0)
 							_crep = 188;
-						else
+						else {
 							_coreVar._atticBallHoleObjectId = _coreVar._selectedObjectId;
+							displayAnimFrame(1, 7);
+						}
 					} else if (_coreVar._atticRodHoleObjectId != 0) {
 						_crep = 188;
 					} else {
 						_coreVar._atticRodHoleObjectId = _coreVar._selectedObjectId;
+						displayAnimFrame(1, 6);
 					}
 				}
 






More information about the Scummvm-git-logs mailing list