Change window icon

This commit is contained in:
elasota
2020-05-18 04:05:18 -04:00
parent 1abb542301
commit d7a769e397
3 changed files with 8 additions and 0 deletions

View File

@@ -905,6 +905,8 @@ void GpDisplayDriverD3D11::Run()
wc.lpfnWndProc = WinProc;
wc.hInstance = m_osGlobals->m_hInstance;
wc.hCursor = m_arrowCursor;
wc.hIcon = m_osGlobals->m_hIcon;
wc.hIconSm = m_osGlobals->m_hIconSm;
wc.hbrBackground = (HBRUSH)COLOR_WINDOW;
wc.lpszClassName = "GPD3D11WindowClass";