aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx
diff options
context:
space:
mode:
authorAlyssa Milburn2011-04-14 23:02:18 +0200
committerAlyssa Milburn2011-04-14 23:02:18 +0200
commiteef6c5dd90d17b0166f1c13a4f6ec50d67e90646 (patch)
tree9e65495b57723a92f93e68449333746e603ebfda /engines/sword25/gfx
parentcfacca1a26e233f3054d5b04858316a3c1ae8be7 (diff)
downloadscummvm-rg350-eef6c5dd90d17b0166f1c13a4f6ec50d67e90646.tar.gz
scummvm-rg350-eef6c5dd90d17b0166f1c13a4f6ec50d67e90646.tar.bz2
scummvm-rg350-eef6c5dd90d17b0166f1c13a4f6ec50d67e90646.zip
SWORD25: Silly whitespace fix.
Diffstat (limited to 'engines/sword25/gfx')
-rw-r--r--engines/sword25/gfx/image/renderedimage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/gfx/image/renderedimage.cpp b/engines/sword25/gfx/image/renderedimage.cpp
index 1cc5d50e90..b740c0ec68 100644
--- a/engines/sword25/gfx/image/renderedimage.cpp
+++ b/engines/sword25/gfx/image/renderedimage.cpp
@@ -267,7 +267,7 @@ bool RenderedImage::blit(int posX, int posY, int flipping, Common::Rect *pPartRe
out = outo;
in = ino;
for (int j = 0; j < img->w; j++) {
- uint32 pix = *(uint32*)in;
+ uint32 pix = *(uint32 *)in;
int b = (pix >> 0) & 0xff;
int g = (pix >> 8) & 0xff;
int r = (pix >> 16) & 0xff;