git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@810 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-25 01:57:03 +00:00
parent a4b2e39259
commit 6f0de898c0

View File

@@ -510,8 +510,8 @@ static void MwLLSetIconImpl(MwLL handle, MwLLPixmap pixmap) {
ii.hbmColor = pixmap->gdi.hBitmap;
ico = CreateIconIndirect(&ii);
SendMessage(handle->gdi.hWnd, WM_SETICON, ICON_BIG, ico);
SendMessage(handle->gdi.hWnd, WM_SETICON, ICON_SMALL, ico);
SendMessage(handle->gdi.hWnd, WM_SETICON, ICON_BIG, (LPARAM)ico);
SendMessage(handle->gdi.hWnd, WM_SETICON, ICON_SMALL, (LPARAM)ico);
DestroyIcon(ico);
}