mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
gdiplus: Fix copy-paste typo.
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d8cdafcc6f
commit
79ebd3f3bf
1 changed files with 1 additions and 1 deletions
|
@ -4353,7 +4353,7 @@ GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GD
|
||||||
for(i = 0; i < count; i++){
|
for(i = 0; i < count; i++){
|
||||||
rectsF[i].X = (REAL)rects[i].X;
|
rectsF[i].X = (REAL)rects[i].X;
|
||||||
rectsF[i].Y = (REAL)rects[i].Y;
|
rectsF[i].Y = (REAL)rects[i].Y;
|
||||||
rectsF[i].X = (REAL)rects[i].Width;
|
rectsF[i].Width = (REAL)rects[i].Width;
|
||||||
rectsF[i].Height = (REAL)rects[i].Height;
|
rectsF[i].Height = (REAL)rects[i].Height;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue