[Scummvm-cvs-logs] SF.net SVN: scummvm:[41354] scummvm/trunk/graphics/video/smk_decoder.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Mon Jun 8 00:17:44 CEST 2009


Revision: 41354
          http://scummvm.svn.sourceforge.net/scummvm/?rev=41354&view=rev
Author:   thebluegr
Date:     2009-06-07 22:17:44 +0000 (Sun, 07 Jun 2009)

Log Message:
-----------
Formatting

Modified Paths:
--------------
    scummvm/trunk/graphics/video/smk_decoder.cpp

Modified: scummvm/trunk/graphics/video/smk_decoder.cpp
===================================================================
--- scummvm/trunk/graphics/video/smk_decoder.cpp	2009-06-07 22:15:28 UTC (rev 41353)
+++ scummvm/trunk/graphics/video/smk_decoder.cpp	2009-06-07 22:17:44 UTC (rev 41354)
@@ -74,8 +74,7 @@
 };
 
 bool BitStream::getBit() {
-	if (_bitCount == 0)
-	{
+	if (_bitCount == 0) {
 		assert(_buf < _end);
 		_curByte = *_buf++;
 		_bitCount = 8;
@@ -146,8 +145,7 @@
 };
 
 SmallHuffmanTree::SmallHuffmanTree(BitStream &bs)
-	: _treeSize(0), _bs(bs)
-{
+	: _treeSize(0), _bs(bs) {
 	uint32 bit = _bs.getBit();
 	assert(bit);
 
@@ -239,8 +237,7 @@
 };
 
 BigHuffmanTree::BigHuffmanTree(BitStream &bs, int allocSize)
-	: _bs(bs)
-{
+	: _bs(bs) {
 	uint32 bit = _bs.getBit();
 	if (!bit) {
 		_tree = new uint32[1];


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list