Skip to content
Snippets Groups Projects
Commit ab73d6e9 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard
Browse files

Replaced CreateDCA by CreateDCW in LoadImageW.

parent 43c3dc4d
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,8 @@ static RECT CURSOR_ClipRect; /* Cursor clipping rect */
static HDC screen_dc;
static const WCHAR DISPLAYW[] = {'D','I','S','P','L','A','Y',0};
/**********************************************************************
* ICONCACHE for cursors/icons loaded with LR_SHARED.
*
......@@ -2052,7 +2054,7 @@ HANDLE WINAPI LoadImageW( HINSTANCE hinst, LPCWSTR name, UINT type,
return BITMAP_Load( hinst, name, loadflags );
case IMAGE_ICON:
if (!screen_dc) screen_dc = CreateDCA( "DISPLAY", NULL, NULL, NULL );
if (!screen_dc) screen_dc = CreateDCW( DISPLAYW, NULL, NULL, NULL );
if (screen_dc)
{
UINT palEnts = GetSystemPaletteEntries(screen_dc, 0, 0, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment