wined3d: Avoid LPCSTR.

oldstable
Henri Verbeet 2013-09-19 10:16:48 +02:00 committed by Alexandre Julliard
parent 8aae165fc2
commit e9fbb6b0fd
1 changed files with 2 additions and 2 deletions

View File

@ -158,8 +158,8 @@ static BOOL wined3d_dll_init(HINSTANCE hInstDLL)
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hInstDLL;
wc.hIcon = LoadIconA(NULL, (LPCSTR)IDI_WINLOGO);
wc.hCursor = LoadCursorA(NULL, (LPCSTR)IDC_ARROW);
wc.hIcon = LoadIconA(NULL, (const char *)IDI_WINLOGO);
wc.hCursor = LoadCursorA(NULL, (const char *)IDC_ARROW);
wc.hbrBackground = NULL;
wc.lpszMenuName = NULL;
wc.lpszClassName = WINED3D_OPENGL_WINDOW_CLASS_NAME;