From 4e51a10654e30801a6a12f0b4db4b6f0c30668d9 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 9 Mar 2015 01:11:06 +0000 Subject: [PATCH] [WIN32K] Fix another typo in the same line... Spotted by Jerome. svn path=/trunk/; revision=66619 --- reactos/win32ss/gdi/eng/bitblt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }