diff options
author | Eugene Sandulenko | 2013-09-06 15:49:13 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-09-06 15:49:13 +0300 |
commit | a5800dfe1a34f040d6cef9d0b7a8d7213ebafe5e (patch) | |
tree | a5c4112f41333413a14007c0b3c574b058b94251 | |
parent | f7d10b5b8f08d2b13db0c1db8263ac4f67433c86 (diff) | |
download | scummvm-rg350-a5800dfe1a34f040d6cef9d0b7a8d7213ebafe5e.tar.gz scummvm-rg350-a5800dfe1a34f040d6cef9d0b7a8d7213ebafe5e.tar.bz2 scummvm-rg350-a5800dfe1a34f040d6cef9d0b7a8d7213ebafe5e.zip |
FULLPIPE: Fixed compiler warning
-rw-r--r-- | engines/fullpipe/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 1cb6b85b34..5f77f76310 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -676,7 +676,7 @@ bool Bitmap::isPixelHitAtPos(int x, int y) { if (_flags & 0x1000000) { switch (_type) { case 'CB\0\0': - if (_pixels[off] == _flags & 0xff) + if (_pixels[off] == (_flags & 0xff)) return false; break; case 'CB\x05e': |