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

bgK bastien.bouclet at gmail.com
Mon Dec 12 19:30:17 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:
b04af6dc31 MOHAWK: Display the weight up after resetting the clock puzzle in Myst ME


Commit: b04af6dc314969e4a0ae824dbe39fb385536594b
    https://github.com/scummvm/scummvm/commit/b04af6dc314969e4a0ae824dbe39fb385536594b
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2011-12-12T10:29:26-08:00

Commit Message:
MOHAWK: Display the weight up after resetting the clock puzzle in Myst ME

Changed paths:
    engines/mohawk/myst_stacks/myst.cpp



diff --git a/engines/mohawk/myst_stacks/myst.cpp b/engines/mohawk/myst_stacks/myst.cpp
index b6c0a32..b3222e0 100644
--- a/engines/mohawk/myst_stacks/myst.cpp
+++ b/engines/mohawk/myst_stacks/myst.cpp
@@ -2978,15 +2978,17 @@ void Myst::clockReset() {
 }
 
 void Myst::clockResetWeight() {
-	// Set video bounds, weight going up
+	_clockWeightVideo = _vm->_video->playMovie(_vm->wrapMovieFilename("cl1wlfch", kMystStack) , 124, 0);
+
 	if (!(_vm->getFeatures() & GF_ME)) {
-		_clockWeightVideo = _vm->_video->playMovie(_vm->wrapMovieFilename("cl1wlfch", kMystStack) , 124, 0);
+		// Set video bounds, weight going up
 		_vm->_video->setVideoBounds(_clockWeightVideo,
 				Audio::Timestamp(0, 2214 * 2 - _clockWeightPosition, 600),
 				Audio::Timestamp(0, 2214 * 2, 600));
 	} else {
-		//FIXME: Needs QT backwards playing
+		//FIXME: Needs QT backwards playing, for now just display the weight up
 		warning("Weight going back up not implemented");
+		_vm->_video->drawVideoFrame(_clockWeightVideo, Audio::Timestamp(0, 0, 600));
 	}
 
 	// Reset position






More information about the Scummvm-git-logs mailing list