Commit c4fdd2ea authored by Michael Karcher's avatar Michael Karcher Committed by Alexandre Julliard

pDst was advanced too much when decoding DELTA blocks.

parent b7beb727
......@@ -89,7 +89,7 @@ static LONG MSRLE32_DecompressRLE8(
delta_y = (LONG)*pSrc++;
x += delta_x;
y += delta_y;
pDst += delta_y * pitch + delta_x;
pDst += delta_y * pitch;
break;
default: /* RAW */
len = data;
......
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