oleaut32: Slight correction to EMF rendering.

This commit is contained in:
Evan Stade 2007-08-01 17:55:27 -07:00 committed by Alexandre Julliard
parent 2e6ed06fdc
commit a55f233219
1 changed files with 1 additions and 1 deletions

View File

@ -683,7 +683,7 @@ static HRESULT WINAPI OLEPictureImpl_Render(IPicture *iface, HDC hdc,
case PICTYPE_ENHMETAFILE:
{
RECT rc = { x, y, cx, cy };
RECT rc = { x, y, x + cx, y + cy };
PlayEnhMetaFile(hdc, This->desc.u.emf.hemf, &rc);
break;
}