add minecraft icon to windows version (#126)

This commit is contained in:
DFelipeh
2026-03-02 12:03:40 +00:00
committed by GitHub
parent bab9b563de
commit f9b266e02c
2 changed files with 1 additions and 1 deletions

View File

@@ -443,7 +443,7 @@ ATOM MyRegisterClass(HINSTANCE hInstance)
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = "Minecraft";
wcex.lpszClassName = "MinecraftClass";
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_MINECRAFTWINDOWS));
return RegisterClassEx(&wcex);
}