Set the thickness of stock pens to 0 so that they are not scaled.

This commit is contained in:
Francois Gouget 2000-10-31 01:36:09 +00:00 committed by Alexandre Julliard
parent 4de47040fd
commit 78767e6dd3
1 changed files with 3 additions and 3 deletions

View File

@ -82,19 +82,19 @@ static BRUSHOBJ NullBrush =
static PENOBJ WhitePen = static PENOBJ WhitePen =
{ {
{ 0, PEN_MAGIC, 1 }, /* header */ { 0, PEN_MAGIC, 1 }, /* header */
{ PS_SOLID, { 1, 0 }, RGB(255,255,255) } /* logpen */ { PS_SOLID, { 0, 0 }, RGB(255,255,255) } /* logpen */
}; };
static PENOBJ BlackPen = static PENOBJ BlackPen =
{ {
{ 0, PEN_MAGIC, 1 }, /* header */ { 0, PEN_MAGIC, 1 }, /* header */
{ PS_SOLID, { 1, 0 }, RGB(0,0,0) } /* logpen */ { PS_SOLID, { 0, 0 }, RGB(0,0,0) } /* logpen */
}; };
static PENOBJ NullPen = static PENOBJ NullPen =
{ {
{ 0, PEN_MAGIC, 1 }, /* header */ { 0, PEN_MAGIC, 1 }, /* header */
{ PS_NULL, { 1, 0 }, 0 } /* logpen */ { PS_NULL, { 0, 0 }, 0 } /* logpen */
}; };
static FONTOBJ OEMFixedFont = static FONTOBJ OEMFixedFont =