diff options
Diffstat (limited to 'engines/sherlock/scene.cpp')
-rw-r--r-- | engines/sherlock/scene.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/engines/sherlock/scene.cpp b/engines/sherlock/scene.cpp index ca9f19582c..4b0cbee07d 100644 --- a/engines/sherlock/scene.cpp +++ b/engines/sherlock/scene.cpp @@ -378,13 +378,8 @@ bool Scene::loadScene(const Common::String &filename) { for (int idx = 0; idx < numSounds; ++idx) _sounds[idx].synchronize(*rrmStream); - // If sound is turned on, load the sounds into memory - if (sound._soundOn) { - for (int idx = 0; idx < numSounds; ++idx) { - sound.loadSound(_sounds[idx]._name, _sounds[idx]._priority); - _sounds[idx]._name = ""; - } - } + for (int idx = 0; idx < numSounds; ++idx) + sound.loadSound(_sounds[idx]._name, _sounds[idx]._priority); // Read in palette rrmStream->read(screen._cMap, PALETTE_SIZE); |