aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/sound/sound.cpp')
-rw-r--r--engines/gob/sound/sound.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/gob/sound/sound.cpp b/engines/gob/sound/sound.cpp
index 5acc255275..4746bfa99a 100644
--- a/engines/gob/sound/sound.cpp
+++ b/engines/gob/sound/sound.cpp
@@ -50,8 +50,10 @@ Sound::Sound(GobEngine *vm) : _vm(vm) {
_cdrom = new CDROM;
if (_vm->getGameType() == kGameTypeWoodruff)
_bgatmos = new BackgroundAtmosphere(*_vm->_mixer);
- if (_vm->getGameType() == kGameTypeUrban)
+ if (_vm->getGameType() == kGameTypeUrban) {
_bgatmos = new BackgroundAtmosphere(*_vm->_mixer);
+ _bgatmos->setShadable(false);
+ }
}
Sound::~Sound() {