mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
BUGFIX: MouseSafety does it's own parameter validation, and this calculation was flat-out wrong anyway
svn path=/trunk/; revision=12059
This commit is contained in:
parent
4e843a2af2
commit
63fcc0cffd
1 changed files with 2 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: bitblt.c,v 1.59 2004/12/12 01:40:36 weiden Exp $
|
/* $Id: bitblt.c,v 1.60 2004/12/12 21:38:25 royce Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -754,8 +754,7 @@ IntEngStretchBlt(BITMAPOBJ *DestObj,
|
||||||
if (NULL != SourceObj)
|
if (NULL != SourceObj)
|
||||||
{
|
{
|
||||||
MouseSafetyOnDrawStart(SourceSurf, SourceRect->left, SourceRect->top,
|
MouseSafetyOnDrawStart(SourceSurf, SourceRect->left, SourceRect->top,
|
||||||
(SourceRect->left + abs(SourceRect->right - SourceRect->left)),
|
SourceRect->right, SourceRect->bottom);
|
||||||
(SourceRect->top + abs(SourceRect->bottom - SourceRect->top)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* No success yet */
|
/* No success yet */
|
||||||
|
|
Loading…
Reference in a new issue