diff --git a/reactos/subsystems/win32/win32k/objects/bitblt.c b/reactos/subsystems/win32/win32k/objects/bitblt.c index dfcab37d0a2..44739622357 100644 --- a/reactos/subsystems/win32/win32k/objects/bitblt.c +++ b/reactos/subsystems/win32/win32k/objects/bitblt.c @@ -694,16 +694,16 @@ NtGdiMaskBlt ( NtGdiBitBlt(hDC2, 0, 0, nWidth, nHeight, hdcSrc, nXSrc, nYSrc, FRGND_ROP3(dwRop), 0,0); NtGdiBitBlt(hDC2, 0, 0, nWidth, nHeight, hDCMask, xMask, yMask, SRCAND, 0, 0); - /* 4. combine two bitmap and copy it to hdcDest */ + /* 4. combine both and copy the result to hdcDest */ NtGdiBitBlt(hDC1, 0, 0, nWidth, nHeight, hDC2, 0, 0, SRCPAINT, 0, 0); NtGdiBitBlt(hdcDest, nXDest, nYDest, nWidth, nHeight, hDC1, 0, 0, SRCCOPY, 0, 0); - /* 5. restore all object */ + /* 5. restore all objects */ NtGdiSelectBitmap(hDCMask, hOldMaskBitmap); NtGdiSelectBitmap(hDC1, hOldBitmap2); NtGdiSelectBitmap(hDC2, hOldBitmap3); - /* 6. delete all temp object */ + /* 6. delete all temp objects */ NtGdiDeleteObject(hBitmap2); NtGdiDeleteObject(hBitmap3);