diff options
| -rw-r--r-- | engines/sherlock/decompress.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/sherlock/decompress.cpp b/engines/sherlock/decompress.cpp index fff9616c60..dfa573209f 100644 --- a/engines/sherlock/decompress.cpp +++ b/engines/sherlock/decompress.cpp @@ -27,8 +27,8 @@ namespace Sherlock {  /**   * Decompresses an LZW compressed resource. If no outSize is specified, it will   * decompress the entire resource. If, however, an explicit size is specified, - * it will decompress only up to that many bytes from the stream starting at - * whatever position it was previously. + * then it means we're already within a resource, and only want to decompress + * part of it.   */  Common::SeekableReadStream *decompressLZ(Common::SeekableReadStream &source, int32 outSize) {  	if (outSize == -1) { | 
