diff options
Diffstat (limited to 'engines/sword25/gfx/opengl')
-rw-r--r-- | engines/sword25/gfx/opengl/glimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/gfx/opengl/glimage.cpp b/engines/sword25/gfx/opengl/glimage.cpp index ec691d8b66..994a61241e 100644 --- a/engines/sword25/gfx/opengl/glimage.cpp +++ b/engines/sword25/gfx/opengl/glimage.cpp @@ -169,7 +169,7 @@ bool GLImage::Blit(int PosX, int PosY, int Flipping, Common::Rect *pPartRect, un Height = m_Height; ScaleY = (float) Height / (float) m_Height; - if (Color & 0xff000000 != 0xff000000) { + if ((Color & 0xff000000) != 0xff000000) { warning("STUB: Image transparent bg color: %x", Color); } int cr = (Color >> 16) & 0xff; |