Commit cf8b59ef authored by Evan Stade's avatar Evan Stade Committed by Alexandre Julliard

gdi32: Don't print fixme more than once.

parent 3c1c89eb
......@@ -1172,6 +1172,7 @@ BOOL WINAPI PlayEnhMetaFileRecord(
case EMR_EXTSELECTCLIPRGN:
{
static int extselectcliprgn_cases;
#if 0
const EMREXTSELECTCLIPRGN lpRgn = (const EMREXTSELECTCLIPRGN *)mr;
HRGN hRgn = ExtCreateRegion(NULL, lpRgn->cbRgnData, (RGNDATA *)lpRgn->RgnData);
......@@ -1180,7 +1181,8 @@ BOOL WINAPI PlayEnhMetaFileRecord(
/* ExtSelectClipRgn created a copy of the region */
DeleteObject(hRgn);
#endif
FIXME("ExtSelectClipRgn\n");
if(!(extselectcliprgn_cases++))
FIXME("ExtSelectClipRgn\n");
break;
}
......
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