gdi32: Fix coordinates for row copies in mirrored vertical stretching.
This commit is contained in:
parent
c0b006f868
commit
9674011d75
|
@ -1211,7 +1211,7 @@ DWORD stretch_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bit
|
|||
else
|
||||
{
|
||||
last_row.top = dst_start.y - v_params.dst_inc;
|
||||
last_row.bottom = dst_start.y;
|
||||
last_row.bottom = last_row.top + 1;
|
||||
this_row = last_row;
|
||||
offset_rect( &this_row, 0, v_params.dst_inc );
|
||||
copy_rect( &dst_dib, &this_row, &dst_dib, &last_row, NULL, R2_COPYPEN );
|
||||
|
|
Loading…
Reference in New Issue