diff options
author | Colin Snover | 2017-10-06 17:09:25 -0500 |
---|---|---|
committer | Colin Snover | 2017-10-06 22:56:26 -0500 |
commit | d53e7787391683830f57c77cc8acd87c50444d40 (patch) | |
tree | e8487b405ef5df7150212c63e08895e70090f216 /engines/sci | |
parent | 15f6e6b97edf9bb2c3729078d374c5dfef836c22 (diff) | |
download | scummvm-rg350-d53e7787391683830f57c77cc8acd87c50444d40.tar.gz scummvm-rg350-d53e7787391683830f57c77cc8acd87c50444d40.tar.bz2 scummvm-rg350-d53e7787391683830f57c77cc8acd87c50444d40.zip |
SCI32: Rewrap comments to 80 columns in SOL decoder
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; |