aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tsage/core.cpp')
-rw-r--r--engines/tsage/core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tsage/core.cpp b/engines/tsage/core.cpp
index b359e16f52..b6ed17aacb 100644
--- a/engines/tsage/core.cpp
+++ b/engines/tsage/core.cpp
@@ -3216,7 +3216,7 @@ void Visage::flipVertical(GfxSurface &gfxSurface) {
// Flip the lines1
byte *line1P = (byte *)s.getBasePtr(0, y);
byte *line2P = (byte *)s.getBasePtr(0, s.h - y - 1);
-
+
for (int x = 0; x < s.w; ++x)
SWAP(line1P[x], line2P[x]);
}