[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690
Alexandre Julliard
julliard at winehq.org
Sun Jun 17 20:03:26 UTC 2012
The following commit has been merged in the wheezy branch:
commit be68dc2376a1db8abd1f554b4981bfb4b7320cbc
Author: Alexandre Julliard <julliard at winehq.org>
Date: Tue Apr 24 12:38:09 2012 +0200
gdi32: Fix coordinates for row copies in mirrored vertical stretching.
(cherry picked from commit 9674011d75d7cca38dd514d13953748ce98329fe)
diff --git a/dlls/gdi32/dibdrv/bitblt.c b/dlls/gdi32/dibdrv/bitblt.c
index c3acb8c..71576b0 100644
--- a/dlls/gdi32/dibdrv/bitblt.c
+++ b/dlls/gdi32/dibdrv/bitblt.c
@@ -1221,7 +1221,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 );
--
Debian Wine packaging
More information about the pkg-wine-party
mailing list