diff options
author | Filippos Karapetis | 2009-06-07 22:17:44 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-06-07 22:17:44 +0000 |
commit | 6dd009c1533bf80423f8006f87093cddc1610294 (patch) | |
tree | 390b7371a14a1becf6de2cb0fe149b7658b17bd3 /graphics | |
parent | 0c5dd48395e2974f592c537cdb89e8d5e7e28ffd (diff) | |
download | scummvm-rg350-6dd009c1533bf80423f8006f87093cddc1610294.tar.gz scummvm-rg350-6dd009c1533bf80423f8006f87093cddc1610294.tar.bz2 scummvm-rg350-6dd009c1533bf80423f8006f87093cddc1610294.zip |
Formatting
svn-id: r41354
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/video/smk_decoder.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/graphics/video/smk_decoder.cpp b/graphics/video/smk_decoder.cpp index 922bcbda99..9fa0b948f1 100644 --- a/graphics/video/smk_decoder.cpp +++ b/graphics/video/smk_decoder.cpp @@ -74,8 +74,7 @@ private: }; bool BitStream::getBit() { - if (_bitCount == 0) - { + if (_bitCount == 0) { assert(_buf < _end); _curByte = *_buf++; _bitCount = 8; @@ -146,8 +145,7 @@ private: }; SmallHuffmanTree::SmallHuffmanTree(BitStream &bs) - : _treeSize(0), _bs(bs) -{ + : _treeSize(0), _bs(bs) { uint32 bit = _bs.getBit(); assert(bit); @@ -239,8 +237,7 @@ private: }; BigHuffmanTree::BigHuffmanTree(BitStream &bs, int allocSize) - : _bs(bs) -{ + : _bs(bs) { uint32 bit = _bs.getBit(); if (!bit) { _tree = new uint32[1]; |