aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2007-10-31 22:44:08 +0000
committerTorbjörn Andersson2007-10-31 22:44:08 +0000
commit34a9e5bc046bbd7316b34ec167ca143cccd51236 (patch)
tree482fbe713910ae1f357b76390d5bc7fae06f0d2e
parent3318c4b47487674aaf19bec9f9db9ac36e1cae96 (diff)
downloadscummvm-rg350-34a9e5bc046bbd7316b34ec167ca143cccd51236.tar.gz
scummvm-rg350-34a9e5bc046bbd7316b34ec167ca143cccd51236.tar.bz2
scummvm-rg350-34a9e5bc046bbd7316b34ec167ca143cccd51236.zip
Indentation.
svn-id: r29348
-rw-r--r--graphics/dxa_player.cpp28
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 {