[Scummvm-cvs-logs] scummvm master -> 8dd9d44b1ff4bd531f7668973206be2fb372fdde

bgK bastien.bouclet at gmail.com
Mon Dec 14 20:25:46 CET 2015


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:
8dd9d44b1f MOHAWK: Fix loading the Myst cabin gauge movie


Commit: 8dd9d44b1ff4bd531f7668973206be2fb372fdde
    https://github.com/scummvm/scummvm/commit/8dd9d44b1ff4bd531f7668973206be2fb372fdde
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2015-12-14T20:24:46+01:00

Commit Message:
MOHAWK: Fix loading the Myst cabin gauge movie

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 98f0aa5..9ad1635 100644
--- a/engines/mohawk/myst_stacks/myst.cpp
+++ b/engines/mohawk/myst_stacks/myst.cpp
@@ -3683,16 +3683,16 @@ void Myst::boilerFireUpdate(bool init) {
 void Myst::boilerGaugeInit() {
 	if (_vm->getCurCard() == 4098) {
 		_cabinGaugeMovie = _vm->_video->playMovie(_vm->wrapMovieFilename("cabingau", kMystStack));
-		if (!_cabinFireMovie)
+		if (!_cabinGaugeMovie)
 			error("Failed to open cabingau movie");
 
-		_cabinFireMovie->moveTo(243, 96);
+		_cabinGaugeMovie->moveTo(243, 96);
 	} else {
 		_cabinGaugeMovie = _vm->_video->playMovie(_vm->wrapMovieFilename("cabcgfar", kMystStack));
-		if (!_cabinFireMovie)
+		if (!_cabinGaugeMovie)
 			error("Failed to open cabcgfar movie");
 
-		_cabinFireMovie->moveTo(254, 136);
+		_cabinGaugeMovie->moveTo(254, 136);
 	}
 
 	Audio::Timestamp frame;






More information about the Scummvm-git-logs mailing list