gdi32: Print the fixme when the pen is actually hatched.

oldstable
Huw Davies 2011-03-16 13:41:59 +00:00 committed by Alexandre Julliard
parent 84fbe5db0e
commit c8c467155d
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ HPEN WINAPI ExtCreatePen( DWORD style, DWORD width,
return 0;
}
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
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");