diff options
author | Eugene Sandulenko | 2018-06-20 14:05:44 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | aa8849f123160429a91083bd4be11005981ff3d2 (patch) | |
tree | 10922db45e80f01f91cfbcb884ac1e9a7b2385cf /engines | |
parent | 11df62d6faa9065e4e5ef3bede40d5982a9a11f6 (diff) | |
download | scummvm-rg350-aa8849f123160429a91083bd4be11005981ff3d2.tar.gz scummvm-rg350-aa8849f123160429a91083bd4be11005981ff3d2.tar.bz2 scummvm-rg350-aa8849f123160429a91083bd4be11005981ff3d2.zip |
PINK: Shut unused variables warnings
Diffstat (limited to 'engines')
-rw-r--r-- | engines/pink/archive.cpp | 2 | ||||
-rw-r--r-- | engines/pink/cel_decoder.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/pink/archive.cpp b/engines/pink/archive.cpp index c96cd8fa15..acb8b1683c 100644 --- a/engines/pink/archive.cpp +++ b/engines/pink/archive.cpp @@ -259,7 +259,7 @@ Object *Archive::parseObject(bool &isCopyReturned) { if (obTag == 0x0000) { return nullptr; } else if (obTag == 0xffff) { - int schema = _readStream->readUint16LE(); + /* int schema = */_readStream->readUint16LE(); int size = _readStream->readUint16LE(); _readStream->read(className, size); diff --git a/engines/pink/cel_decoder.cpp b/engines/pink/cel_decoder.cpp index 40693d2758..4e66cf7038 100644 --- a/engines/pink/cel_decoder.cpp +++ b/engines/pink/cel_decoder.cpp @@ -95,11 +95,11 @@ CelDecoder::CelVideoTrack::CelVideoTrack(Common::SeekableReadStream *stream, uin void CelDecoder::CelVideoTrack::readPrefixChunk() { _fileStream->seek(0x80); - uint32 chunkSize = _fileStream->readUint32LE(); + /* uint32 chunkSize = */_fileStream->readUint32LE(); uint16 chunkType = _fileStream->readUint16LE(); if (chunkType != PREFIX_TYPE) return; - uint32 offset = 6; + //uint32 offset = 6; uint32 subchunkSize = _fileStream->readUint32LE(); uint16 subchunkType = _fileStream->readUint16LE(); |