diff options
author | Kari Salminen | 2008-06-18 03:31:13 +0000 |
---|---|---|
committer | Kari Salminen | 2008-06-18 03:31:13 +0000 |
commit | 9b910eedba4b7f01e9b0aa7c90831904409ba98a (patch) | |
tree | 65299652c20f2ae4fe7791d32ed965fe9b35a71b | |
parent | 8541fb51480c6748f06f1647f38d98a2aa00b9b6 (diff) | |
download | scummvm-rg350-9b910eedba4b7f01e9b0aa7c90831904409ba98a.tar.gz scummvm-rg350-9b910eedba4b7f01e9b0aa7c90831904409ba98a.tar.bz2 scummvm-rg350-9b910eedba4b7f01e9b0aa7c90831904409ba98a.zip |
Fixed a small discrepancy in Delphine unpacker's command 00b's documentation (Parameter range is 1..8, not 1..9).
svn-id: r32730
-rw-r--r-- | engines/cine/unpack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/unpack.cpp b/engines/cine/unpack.cpp index dcd3181242..5d85ff6cab 100644 --- a/engines/cine/unpack.cpp +++ b/engines/cine/unpack.cpp @@ -111,7 +111,7 @@ bool CineUnpacker::unpack(const byte *src, uint srcLen, byte *dst, uint dstLen) while (_dst >= _dstBegin && !_error) { /* Bits => Action: - 0 0 => unpackRawBytes(3 bits + 1) i.e. unpackRawBytes(1..9) + 0 0 => unpackRawBytes(3 bits + 1) i.e. unpackRawBytes(1..8) 1 1 1 => unpackRawBytes(8 bits + 9) i.e. unpackRawBytes(9..264) 0 1 => copyRelocatedBytes(8 bits, 2) i.e. copyRelocatedBytes(0..255, 2) 1 0 0 => copyRelocatedBytes(9 bits, 3) i.e. copyRelocatedBytes(0..511, 3) |