mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
Load default stock bitmap in CreateDC().
This commit is contained in:
parent
316473d239
commit
e43a430dd6
1 changed files with 2 additions and 1 deletions
|
@ -596,7 +596,8 @@ HDC WINAPI CreateDCA( LPCSTR driver, LPCSTR device, LPCSTR output,
|
|||
return 0;
|
||||
}
|
||||
|
||||
dc->flags = 0;
|
||||
dc->flags = 0;
|
||||
dc->hBitmap = GetStockObject( DEFAULT_BITMAP );
|
||||
|
||||
TRACE("(driver=%s, device=%s, output=%s): returning %p\n",
|
||||
debugstr_a(driver), debugstr_a(device), debugstr_a(output), dc->hSelf );
|
||||
|
|
Loading…
Reference in a new issue