diff options
author | Paul Gilbert | 2014-03-07 23:07:36 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-03-07 23:07:36 -0500 |
commit | 3399516c5e4c2931adf76a25944cb3e46f9934ee (patch) | |
tree | 62c4183969cebb52f0d69281bde4600cacb48e90 /engines/mads/nebular | |
parent | 1874ec2111fd944d3e554acde8a0f06c651c95fb (diff) | |
download | scummvm-rg350-3399516c5e4c2931adf76a25944cb3e46f9934ee.tar.gz scummvm-rg350-3399516c5e4c2931adf76a25944cb3e46f9934ee.tar.bz2 scummvm-rg350-3399516c5e4c2931adf76a25944cb3e46f9934ee.zip |
MADS: Implemented remainder of scene 804 setup code and support methods
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r-- | engines/mads/nebular/nebular_scenes8.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes8.cpp b/engines/mads/nebular/nebular_scenes8.cpp index b3997e110c..caad1e79a7 100644 --- a/engines/mads/nebular/nebular_scenes8.cpp +++ b/engines/mads/nebular/nebular_scenes8.cpp @@ -126,7 +126,14 @@ void Scene804::setup() { _scene->_sequences.setDepth(_globals._spriteIndexes[15], 8); } - // TODO: More setup + _scene->loadAnimation(Resources::formatName(804, 'r', 1, EXT_AA, "")); + + Scene8xx::enter1(); + + if (_globals[165] && !_globals[164]) { + _scene->_interface.setup(2); + _vm->_sound->command(19); + } } void Scene804::enter() { |