SCI32: Rewrap comments to 80 columns in SOL decoder

This commit is contained in:
Colin Snover 2017-10-06 17:09:25 -05:00
parent 15f6e6b97e
commit d53e778739
2 changed files with 5 additions and 7 deletions

View File

@ -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;
}

View File

@ -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;