diff options
-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': |