Commit 8ac6d20d authored by Michael Günnewig's avatar Michael Günnewig Committed by Alexandre Julliard

Fixed 2 typos in my last patch.

parent c783c202
......@@ -803,14 +803,14 @@ LRESULT MSRLE32_CompressRLE8(CodecInfo *pi, LPBITMAPINFOHEADER lpbiIn, LPBYTE lp
if (jumpy == 0) {
/* add EOL -- end of line */
lpbiOut->biSizeImage += 2;
*((LPDWORD)lpOut)++ = 0;
*((LPWORD)lpOut)++ = 0;
assert(lpOut == (lpOutStart + lpbiOut->biSizeImage));
}
}
/* add EOL -- will be changed to EOI */
lpbiOut->biSizeImage += 2;
*((LPDWORD)lpOut)++ = 0;
*((LPWORD)lpOut)++ = 0;
}
/* change EOL to EOI -- end of image */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment