Commit 93a6444b authored by Alexandre Julliard's avatar Alexandre Julliard

Don't set the DC_DIRTY flag in SetDCState since we just updated the DC.

parent 59ffa9ff
......@@ -376,7 +376,7 @@ void WINAPI SetDCState16( HDC16 hdc, HDC16 hdcs )
}
TRACE("%04x %04x\n", hdc, hdcs );
dc->flags = dcs->flags & ~DC_SAVED;
dc->flags = dcs->flags & ~(DC_SAVED | DC_DIRTY);
dc->hDevice = dcs->hDevice;
dc->totalExtent = dcs->totalExtent;
dc->ROPmode = dcs->ROPmode;
......
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