mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
- Minor correction to DIB_32BPP_BitBlt that I broke with my last patch.
svn path=/trunk/; revision=10126
This commit is contained in:
parent
64b9c0f3cc
commit
3281baa0bf
1 changed files with 2 additions and 2 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: dib32bpp.c,v 1.30 2004/07/14 20:48:56 navaraf Exp $ */
|
||||
/* $Id: dib32bpp.c,v 1.31 2004/07/15 18:13:22 navaraf Exp $ */
|
||||
#include <w32k.h>
|
||||
|
||||
VOID
|
||||
|
@ -344,7 +344,7 @@ DIB_32BPP_BitBlt(PBLTINFO BltInfo)
|
|||
}
|
||||
DestBits = (PULONG)(
|
||||
(ULONG_PTR)DestBits -
|
||||
((BltInfo->DestRect.right - BltInfo->DestRect.left) << 2) -
|
||||
((BltInfo->DestRect.right - BltInfo->DestRect.left) << 2) +
|
||||
BltInfo->DestSurface->lDelta);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue