diff options
author | Alyssa Milburn | 2011-07-20 09:54:11 +0200 |
---|---|---|
committer | Alyssa Milburn | 2011-07-20 09:54:11 +0200 |
commit | f68395232765355f80e784d7b95986152edebb04 (patch) | |
tree | 800bbac5647970e4c4440ff2f470330ac6aef2b8 /engines/composer | |
parent | bdb1b81ca088a409c1876db7bec84993e947c5e0 (diff) | |
download | scummvm-rg350-f68395232765355f80e784d7b95986152edebb04.tar.gz scummvm-rg350-f68395232765355f80e784d7b95986152edebb04.tar.bz2 scummvm-rg350-f68395232765355f80e784d7b95986152edebb04.zip |
COMPOSER: Minor whitespace/comment tweaks.
Diffstat (limited to 'engines/composer')
-rw-r--r-- | engines/composer/resource.cpp | 1 | ||||
-rw-r--r-- | engines/composer/resource.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/engines/composer/resource.cpp b/engines/composer/resource.cpp index cd77fa16fc..e0893380bf 100644 --- a/engines/composer/resource.cpp +++ b/engines/composer/resource.cpp @@ -271,7 +271,6 @@ void Pipe::nextFrame() { ResourceMap &resMap = _types[tag]; _offset += (12 * count); - //uint32 baseOffset = _offset; for (uint j = 0; j < count; j++) { uint32 offset = _stream->readUint32LE(); uint32 size = _stream->readUint32LE(); diff --git a/engines/composer/resource.h b/engines/composer/resource.h index 4248ad949a..f97a628933 100644 --- a/engines/composer/resource.h +++ b/engines/composer/resource.h @@ -106,7 +106,7 @@ public: Animation *_anim; - bool hasResource(uint32 tag, uint16 id) const; + bool hasResource(uint32 tag, uint16 id) const; Common::SeekableReadStream *getResource(uint32 tag, uint16 id, bool buffering); protected: |