Commit 78767e6d authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 4de47040
...@@ -82,19 +82,19 @@ static BRUSHOBJ NullBrush = ...@@ -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 =
......
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