Author: tkreuzer Date: Mon Mar 9 01:11:06 2015 New Revision: 66619
URL: http://svn.reactos.org/svn/reactos?rev=66619&view=rev Log: [WIN32K] Fix another typo in the same line... Spotted by Jerome.
Modified: trunk/reactos/win32ss/gdi/eng/bitblt.c
Modified: trunk/reactos/win32ss/gdi/eng/bitblt.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/eng/bitblt.c?re... ============================================================================== --- trunk/reactos/win32ss/gdi/eng/bitblt.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/gdi/eng/bitblt.c [iso-8859-1] Mon Mar 9 01:11:06 2015 @@ -468,7 +468,7 @@ 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; } }