Commit ee0e1392 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

gdi: Show hatch brush FIXME only once.

parent 990e20c9
......@@ -154,8 +154,11 @@ HPEN WINAPI ExtCreatePen( DWORD style, DWORD width,
return 0;
}
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
FIXME("Hatches not implemented\n");
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
{
static int fixme_hatches_shown;
if (!fixme_hatches_shown++) FIXME("Hatches not implemented\n");
}
}
else
{
......
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