Commit 9674011d authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Fix coordinates for row copies in mirrored vertical stretching.

parent c0b006f8
......@@ -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 );
......
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