mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Use correct dest rect when preventing copy outside source surf
svn path=/trunk/; revision=16057
This commit is contained in:
parent
434303caa3
commit
95d1b8ae62
1 changed files with 2 additions and 2 deletions
|
@ -552,8 +552,8 @@ IntEngBitBlt(BITMAPOBJ *DestObj,
|
|||
{
|
||||
return TRUE;
|
||||
}
|
||||
InputPoint.x += OutputRect.left - DestRect->left;
|
||||
InputPoint.y += OutputRect.top - DestRect->top;
|
||||
InputPoint.x += OutputRect.left - InputClippedRect.left;
|
||||
InputPoint.y += OutputRect.top - InputClippedRect.top;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue