aboutsummaryrefslogtreecommitdiff
path: root/engines/saga
diff options
context:
space:
mode:
Diffstat (limited to 'engines/saga')
-rw-r--r--engines/saga/music.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/saga/music.cpp b/engines/saga/music.cpp
index 2ca05c12ff..a8bb091e07 100644
--- a/engines/saga/music.cpp
+++ b/engines/saga/music.cpp
@@ -105,7 +105,6 @@ DigitalMusicInputStream::DigitalMusicInputStream(SagaEngine *vm, ResourceContext
soundType = kSoundFLAC;
}
- _file->seek((long)resourceData->offset + 9, SEEK_SET);
createCompressedStream();
}
@@ -155,7 +154,7 @@ void DigitalMusicInputStream::createCompressedStream() {
#endif
default:
// Unknown compression
- error("Trying to play a compressed digital music, but the compression is not known");
+ error("Trying to play compressed digital music, but the compression is not known");
break;
}
}
@@ -186,7 +185,6 @@ void DigitalMusicInputStream::refill() {
uint32 lengthLeft;
byte *ptr = (byte *) _buf;
-
_file->seek(_filePos, SEEK_SET);
if (_looping)