diff options
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/sound/decoders/sol.cpp | 9 | ||||
-rw-r--r-- | engines/sci/sound/decoders/sol.h | 3 |
2 files changed, 5 insertions, 7 deletions
diff --git a/engines/sci/sound/decoders/sol.cpp b/engines/sci/sound/decoders/sol.cpp index 50d353cf18..a6eb8a47b8 100644 --- a/engines/sci/sound/decoders/sol.cpp +++ b/engines/sci/sound/decoders/sol.cpp @@ -157,11 +157,10 @@ SOLStream<STEREO, S16BIT, OLDDPCM8>::SOLStream(Common::SeekableReadStream *strea template <bool STEREO, bool S16BIT, bool OLDDPCM8> bool SOLStream<STEREO, S16BIT, OLDDPCM8>::seek(const Audio::Timestamp &where) { if (where != 0) { - // In order to seek in compressed SOL files, all - // previous bytes must be known since it uses - // differential compression. Therefore, only seeking - // to the beginning is supported now (SSCI does not - // offer seeking anyway) + // In order to seek in compressed SOL files, all previous bytes must be + // known since it uses differential compression. Therefore, only seeking + // to the beginning is supported now (SSCI does not offer seeking + // anyway) return false; } diff --git a/engines/sci/sound/decoders/sol.h b/engines/sci/sound/decoders/sol.h index 1141132365..2b84b8bc35 100644 --- a/engines/sci/sound/decoders/sol.h +++ b/engines/sci/sound/decoders/sol.h @@ -47,8 +47,7 @@ private: uint16 _sampleRate; /** - * The raw (possibly-compressed) size of audio data in - * the stream. + * The raw (possibly-compressed) size of audio data in the stream. */ int32 _rawDataSize; |