add more parentheses

This commit is contained in:
adroitwhiz 2019-09-04 15:40:49 -04:00
parent 1b51f1f393
commit ad6ddd9f99

View File

@ -434,12 +434,12 @@ class Drawable {
}
// If the effect bits for mosaic, pixelate, whirl, or fisheye are set, use linear
if (this._effectBits & (
if ((this._effectBits & (
ShaderManager.EFFECT_INFO.fisheye.mask |
ShaderManager.EFFECT_INFO.whirl.mask |
ShaderManager.EFFECT_INFO.pixelate.mask |
ShaderManager.EFFECT_INFO.mosaic.mask
) !== 0) {
)) !== 0) {
return false;
}