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

bluegr bluegr at gmail.com
Tue May 27 11:05:54 CEST 2014


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:
e0c44d3f7b MADS: Bugfix for loading saves made outside the woman's hut (scene 210)


Commit: e0c44d3f7b6afecd9ac27ecc6ec0ba976f134e9b
    https://github.com/scummvm/scummvm/commit/e0c44d3f7b6afecd9ac27ecc6ec0ba976f134e9b
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2014-05-27T12:05:25+03:00

Commit Message:
MADS: Bugfix for loading saves made outside the woman's hut (scene 210)

Changed paths:
    engines/mads/nebular/nebular_scenes2.cpp



diff --git a/engines/mads/nebular/nebular_scenes2.cpp b/engines/mads/nebular/nebular_scenes2.cpp
index cd849d9..6c7e4f3 100644
--- a/engines/mads/nebular/nebular_scenes2.cpp
+++ b/engines/mads/nebular/nebular_scenes2.cpp
@@ -4259,7 +4259,8 @@ void Scene210::enter() {
 		}
 
 		restoreDialogNode(_curDialogNode, quote, number);
-		_scene->_activeAnimation->setCurrentFrame(131);
+		if (_scene->_activeAnimation)
+			_scene->_activeAnimation->setCurrentFrame(131);
 	}
 
 	_vm->_palette->setEntry(252, 63, 63, 10);






More information about the Scummvm-git-logs mailing list