From 69ad8504b0f20345c2d73489c58633e00f228f5a Mon Sep 17 00:00:00 2001 From: Scott Graham Date: Wed, 16 Apr 2014 21:03:36 -0700 Subject: [PATCH] Use NULL as instance when loading predefined icon/cursor --- examples/common/entry/entry_windows.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/common/entry/entry_windows.cpp b/examples/common/entry/entry_windows.cpp index dc7b3a952..765e5883f 100644 --- a/examples/common/entry/entry_windows.cpp +++ b/examples/common/entry/entry_windows.cpp @@ -160,11 +160,11 @@ namespace entry wnd.cbSize = sizeof(wnd); wnd.lpfnWndProc = DefWindowProc; wnd.hInstance = instance; - wnd.hIcon = LoadIcon(instance, IDI_APPLICATION); - wnd.hCursor = LoadCursor(instance, IDC_ARROW); + wnd.hIcon = LoadIcon(NULL, IDI_APPLICATION); + wnd.hCursor = LoadCursor(NULL, IDC_ARROW); wnd.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH); wnd.lpszClassName = "bgfx_letterbox"; - wnd.hIconSm = LoadIcon(instance, IDI_APPLICATION); + wnd.hIconSm = LoadIcon(NULL, IDI_APPLICATION); RegisterClassExA(&wnd); memset(&wnd, 0, sizeof(wnd) ); @@ -172,10 +172,10 @@ namespace entry wnd.style = CS_HREDRAW | CS_VREDRAW; wnd.lpfnWndProc = wndProc; wnd.hInstance = instance; - wnd.hIcon = LoadIcon(instance, IDI_APPLICATION); - wnd.hCursor = LoadCursor(instance, IDC_ARROW); + wnd.hIcon = LoadIcon(NULL, IDI_APPLICATION); + wnd.hCursor = LoadCursor(NULL, IDC_ARROW); wnd.lpszClassName = "bgfx"; - wnd.hIconSm = LoadIcon(instance, IDI_APPLICATION); + wnd.hIconSm = LoadIcon(NULL, IDI_APPLICATION); RegisterClassExA(&wnd); HWND hwnd = CreateWindowA("bgfx_letterbox"