From 7a2142b8d6f545e99900460e5f03a43fb96f5337 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 28 Aug 2010 20:58:11 +0000 Subject: SWORD25: Fix more warnings svn-id: r53293 --- engines/sword25/gfx/opengl/glimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sword25/gfx/opengl') 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; -- cgit v1.2.3