pDst was advanced too much when decoding DELTA blocks.

This commit is contained in:
Michael Karcher 2002-03-12 19:19:23 +00:00 committed by Alexandre Julliard
parent b7beb7278f
commit c4fdd2ea24
1 changed files with 1 additions and 1 deletions

View File

@ -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;