mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 17:43:44 +00:00
Don't set the DC_DIRTY flag in SetDCState since we just updated the DC.
This commit is contained in:
parent
59ffa9fff7
commit
93a6444b45
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue