diff --git a/reactos/win32ss/gdi/eng/bitblt.c b/reactos/win32ss/gdi/eng/bitblt.c index 013a2cd57c8..8d40b4ec795 100644 --- a/reactos/win32ss/gdi/eng/bitblt.c +++ b/reactos/win32ss/gdi/eng/bitblt.c @@ -468,7 +468,7 @@ EngBitBlt( if (psoMask == NULL) { /* We have no mask, assume the mask is all foreground */ - rop4 = (rop4 & 0xFF) || ((rop4 & 0xFF) << 8); + rop4 = (rop4 & 0xFF) | ((rop4 & 0xFF) << 8); UsesMask = FALSE; } }