Commit acb0a1a6 by Geoff Lang

Fix compile failure on build systems with UNICODE defined.

BUG=angleproject:961 Change-Id: I32053309a8384a27d1c2a991ddfaa195195f88c8 Reviewed-on: https://chromium-review.googlesource.com/267637Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent d3b84ab5
......@@ -302,7 +302,7 @@ egl::Error DisplayD3D::initialize(egl::Display *display)
childWindowClassDesc.cbClsExtra = 0;
childWindowClassDesc.cbWndExtra = 0;
childWindowClassDesc.hInstance = GetModuleHandle(nullptr);
childWindowClassDesc.hIcon = LoadIconA(nullptr, IDI_APPLICATION);
childWindowClassDesc.hIcon = nullptr;
childWindowClassDesc.hCursor = LoadCursorA(nullptr, idcArrow);
childWindowClassDesc.hbrBackground = 0;
childWindowClassDesc.lpszMenuName = nullptr;
......
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