Should we also set the icon in the task manager?

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403433
This commit is contained in:
Sam Lantinga 2009-01-03 01:20:55 +00:00
parent 8e66442a4f
commit 01419057d7

View file

@ -366,8 +366,11 @@ WIN_SetWindowIcon(_THIS, SDL_Window * window, SDL_Surface * icon)
SDL_stack_free(icon_bmp);
}
/* Set the icon */
/* Set the icon for the window */
SendMessage(hwnd, WM_SETICON, ICON_SMALL, (LPARAM)hicon);
/* Set the icon in the task manager (should we do this?) */
SendMessage(hwnd, WM_SETICON, ICON_BIG, (LPARAM)hicon);
}
void