mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 19:10:35 +00:00
gdi: Show hatch brush FIXME only once.
This commit is contained in:
parent
990e20c992
commit
ee0e13923f
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user