diff options
author | Torbjörn Andersson | 2009-05-21 07:23:48 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-05-21 07:23:48 +0000 |
commit | f3f0be30fd520550ab286d660210dc099a8a3ced (patch) | |
tree | a7c79dab411feaeac8278234360d5e88ea2dbe5e /graphics | |
parent | f2668f8a7d8f460435756c31056ec07a578610af (diff) | |
download | scummvm-rg350-f3f0be30fd520550ab286d660210dc099a8a3ced.tar.gz scummvm-rg350-f3f0be30fd520550ab286d660210dc099a8a3ced.tar.bz2 scummvm-rg350-f3f0be30fd520550ab286d660210dc099a8a3ced.zip |
Fixed indentation. (Don't worry, it's just a small change, and it matches the
original FFmpeg code, as far as I can tell.)
svn-id: r40749
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/video/indeo3.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/graphics/video/indeo3.cpp b/graphics/video/indeo3.cpp index 0e0bd757a2..f34621a6a5 100644 --- a/graphics/video/indeo3.cpp +++ b/graphics/video/indeo3.cpp @@ -1095,16 +1095,16 @@ void Indeo3::decodeChunk(byte *cur, byte *ref, int width, int height, lp2 = 4; break; - case 9: - warning("Indeo3::decodeChunk: Untested (4)"); - lv1 = *buf1++; - lv = (lv1 & 0x7F) << 1; - lv += (lv << 8); - lv += (lv << 16); - for (i = 0, j = 0; i < 4; i++, j += width_tbl[1]) - cur_lp[j] = lv; - LV1_CHECK(buf1,rle_v3,lv1,lp2) - break; + case 9: + warning("Indeo3::decodeChunk: Untested (4)"); + lv1 = *buf1++; + lv = (lv1 & 0x7F) << 1; + lv += (lv << 8); + lv += (lv << 16); + for (i = 0, j = 0; i < 4; i++, j += width_tbl[1]) + cur_lp[j] = lv; + LV1_CHECK(buf1,rle_v3,lv1,lp2) + break; default: return; |