aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/sound/wave_file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/sound/wave_file.cpp b/engines/titanic/sound/wave_file.cpp
index ba895088ad..ae633a2149 100644
--- a/engines/titanic/sound/wave_file.cpp
+++ b/engines/titanic/sound/wave_file.cpp
@@ -207,7 +207,7 @@ Audio::SoundHandle CWaveFile::play(int numLoops, byte volume) {
(numLoops == -1) ? 0 : numLoops);
_mixer->playStream(_soundType, &handle, stream, -1,
- volume, 0, DisposeAfterUse::NO);
+ volume, 0, DisposeAfterUse::YES);
return handle;
}