Commit 987a18a5 authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Remove an unused variable.

parent bd3b0e4f
......@@ -711,7 +711,6 @@ DWORD dibdrv_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info
{
dib_info *dib, stand_alone;
DWORD ret;
POINT origin;
dib_info src_dib;
HRGN saved_clip = NULL;
dibdrv_physdev *pdev = NULL;
......@@ -757,9 +756,6 @@ DWORD dibdrv_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info
init_dib_info_from_bitmapinfo( &src_dib, info, bits->ptr, 0 );
src_dib.bits.is_copy = bits->is_copy;
origin.x = src->visrect.left;
origin.y = src->visrect.top;
if (!hbitmap)
{
if (clip) saved_clip = add_extra_clipping_region( pdev, clip );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment