diff options
| -rw-r--r-- | engines/sword25/gfx/image/renderedimage.cpp | 2 | 
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; | 
