mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
InputPoint.x += OutputRect.left - DestRect->left;
|
InputPoint.x += OutputRect.left - InputClippedRect.left;
|
||||||
InputPoint.y += OutputRect.top - DestRect->top;
|
InputPoint.y += OutputRect.top - InputClippedRect.top;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue