Minor Update - Icon

Feat :

+ Ajout de l'icon pour l'application
This commit is contained in:
2024-04-08 17:33:11 +02:00
parent f59f371c0c
commit 219b6cefff
8 changed files with 27 additions and 10 deletions

View File

@@ -276,8 +276,8 @@ void SystemClass::InitializeWindows(int& screenWidth, int& screenHeight)
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = m_hinstance;
wc.hIcon = LoadIcon(NULL, IDI_WINLOGO);
wc.hIconSm = wc.hIcon;
wc.hIcon = LoadIcon(m_hinstance,MAKEINTRESOURCE(IDI_ICON1));
wc.hIconSm = LoadIcon(m_hinstance, MAKEINTRESOURCE(IDI_ICON1));
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
wc.lpszMenuName = NULL;