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

This commit is contained in:
Alexandre Julliard 2012-04-24 12:38:09 +02:00
parent c0b006f868
commit 9674011d75
1 changed files with 1 additions and 1 deletions

View File

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