aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound/iff_sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/iff_sound.cpp b/sound/iff_sound.cpp
index c201830f60..704e3a0543 100644
--- a/sound/iff_sound.cpp
+++ b/sound/iff_sound.cpp
@@ -112,7 +112,7 @@ AudioStream *make8SVXStream(Common::ReadStream &input, bool loop) {
if (loop) {
// the standard way to loop 8SVX audio implies use of the oneShotHiSamples and
// repeatHiSamples fields
- loopStart = 0;
+ loopStart = loader._header.oneShotHiSamples;
loopEnd = loader._header.oneShotHiSamples + loader._header.repeatHiSamples;
flags |= Audio::FLAG_LOOP;
}