aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/opengl
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-28 20:58:11 +0000
committerEugene Sandulenko2010-10-12 23:19:21 +0000
commit7a2142b8d6f545e99900460e5f03a43fb96f5337 (patch)
tree44091010eaa0aa1f28b8174956e55c3a2ea7446c /engines/sword25/gfx/opengl
parentdeb7dcc8bb26483ea1f0271e04de441a586dd144 (diff)
downloadscummvm-rg350-7a2142b8d6f545e99900460e5f03a43fb96f5337.tar.gz
scummvm-rg350-7a2142b8d6f545e99900460e5f03a43fb96f5337.tar.bz2
scummvm-rg350-7a2142b8d6f545e99900460e5f03a43fb96f5337.zip
SWORD25: Fix more warnings
svn-id: r53293
Diffstat (limited to 'engines/sword25/gfx/opengl')
-rw-r--r--engines/sword25/gfx/opengl/glimage.cpp2
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;