mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
- Fixed negative width/height off by one.
svn path=/trunk/; revision=5388
This commit is contained in:
parent
334c131a7a
commit
a319015f49
1 changed files with 5 additions and 5 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: brush.c,v 1.22 2003/07/27 18:37:23 dwelch Exp $
|
||||
/* $Id: brush.c,v 1.23 2003/08/02 19:52:03 dwelch Exp $
|
||||
*/
|
||||
|
||||
|
||||
|
@ -229,8 +229,8 @@ BOOL STDCALL W32kPatBlt(HDC hDC,
|
|||
}
|
||||
else
|
||||
{
|
||||
DestRect.left = XLeft + Width + dc->w.DCOrgX;
|
||||
DestRect.right = XLeft + dc->w.DCOrgX;
|
||||
DestRect.left = XLeft + Width + 1 + dc->w.DCOrgX;
|
||||
DestRect.right = XLeft + dc->w.DCOrgX + 1;
|
||||
}
|
||||
if (Height > 0)
|
||||
{
|
||||
|
@ -239,8 +239,8 @@ BOOL STDCALL W32kPatBlt(HDC hDC,
|
|||
}
|
||||
else
|
||||
{
|
||||
DestRect.top = YLeft + Height + dc->w.DCOrgY;
|
||||
DestRect.bottom = YLeft + dc->w.DCOrgY;
|
||||
DestRect.top = YLeft + Height + dc->w.DCOrgY + 1;
|
||||
DestRect.bottom = YLeft + dc->w.DCOrgY + 1;
|
||||
}
|
||||
ret = IntEngBitBlt(SurfObj,
|
||||
NULL,
|
||||
|
|
Loading…
Reference in a new issue