diff options
-rw-r--r-- | engines/mads/nebular/nebular_scenes2.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/engines/mads/nebular/nebular_scenes2.cpp b/engines/mads/nebular/nebular_scenes2.cpp index fa480f61ae..7a9738f848 100644 --- a/engines/mads/nebular/nebular_scenes2.cpp +++ b/engines/mads/nebular/nebular_scenes2.cpp @@ -4971,13 +4971,14 @@ void Scene213::enter() { teleporterEnter(); // The original is calling Scene2xx::sceneEntrySound() - if (_vm->_musicFlag) { - if (_globals[kMeteorologistWatch] == METEOROLOGIST_NORMAL) - _vm->_sound->command(1); - else - _vm->_sound->command(9); - } else - _vm->_sound->command(2); + if (_vm->_musicFlag) { + if (_globals[kMeteorologistWatch] == METEOROLOGIST_NORMAL) + _vm->_sound->command(1); + else + _vm->_sound->command(9); + } else { + _vm->_sound->command(2); + } } void Scene213::step() { |