oleaut32: Slight correction to EMF rendering.
diff --git a/dlls/oleaut32/olepicture.c b/dlls/oleaut32/olepicture.c
index e1c61b2..a7dc158 100644
--- a/dlls/oleaut32/olepicture.c
+++ b/dlls/oleaut32/olepicture.c
@@ -683,7 +683,7 @@
 
   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;
   }