diff options
author | Torbjörn Andersson | 2007-10-31 22:44:08 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2007-10-31 22:44:08 +0000 |
commit | 34a9e5bc046bbd7316b34ec167ca143cccd51236 (patch) | |
tree | 482fbe713910ae1f357b76390d5bc7fae06f0d2e | |
parent | 3318c4b47487674aaf19bec9f9db9ac36e1cae96 (diff) | |
download | scummvm-rg350-34a9e5bc046bbd7316b34ec167ca143cccd51236.tar.gz scummvm-rg350-34a9e5bc046bbd7316b34ec167ca143cccd51236.tar.bz2 scummvm-rg350-34a9e5bc046bbd7316b34ec167ca143cccd51236.zip |
Indentation.
svn-id: r29348
-rw-r--r-- | graphics/dxa_player.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/graphics/dxa_player.cpp b/graphics/dxa_player.cpp index 11cbc55c96..d723512a1d 100644 --- a/graphics/dxa_player.cpp +++ b/graphics/dxa_player.cpp @@ -32,20 +32,20 @@ #endif static void scaleUpBy2(byte *dst, byte *src, uint16 width, uint16 h) { - uint16 x; - - while (h > 0) { - for (x = width; x > 0; x--) { - register byte v; - - v = *src++; - *dst++ = v; - *dst++ = v; - } - memcpy(dst, dst - width * 2, width * 2); - dst += width * 2; - h--; - } + uint16 x; + + while (h > 0) { + for (x = width; x > 0; x--) { + register byte v; + + v = *src++; + *dst++ = v; + *dst++ = v; + } + memcpy(dst, dst - width * 2, width * 2); + dst += width * 2; + h--; + } } namespace Graphics { |