Commit 895d1b71 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Output EMR_POLYGON16 records when possible.

parent f4205ad7
......@@ -459,6 +459,8 @@ BOOL
EMFDRV_Polygon( PHYSDEV dev, const POINT* pt, INT count )
{
if(count < 2) return FALSE;
if( EMFDRV_Polylinegon16( dev, pt, count, EMR_POLYGON16 ) )
return TRUE;
return EMFDRV_Polylinegon( dev, pt, count, EMR_POLYGON );
}
......
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