diff options
author | Filippos Karapetis | 2014-05-27 12:05:25 +0300 |
---|---|---|
committer | Filippos Karapetis | 2014-05-27 12:05:25 +0300 |
commit | e0c44d3f7b6afecd9ac27ecc6ec0ba976f134e9b (patch) | |
tree | b45d8f8fa0482866bb015452548a65d0ec893044 /engines/mads/nebular | |
parent | aa93329c69db0d8c9a7efb54c43c2d6ba86d9bc4 (diff) | |
download | scummvm-rg350-e0c44d3f7b6afecd9ac27ecc6ec0ba976f134e9b.tar.gz scummvm-rg350-e0c44d3f7b6afecd9ac27ecc6ec0ba976f134e9b.tar.bz2 scummvm-rg350-e0c44d3f7b6afecd9ac27ecc6ec0ba976f134e9b.zip |
MADS: Bugfix for loading saves made outside the woman's hut (scene 210)
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r-- | engines/mads/nebular/nebular_scenes2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes2.cpp b/engines/mads/nebular/nebular_scenes2.cpp index cd849d9839..6c7e4f3188 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); |