# HG changeset patch # User Sam Lantinga # Date 1230945655 0 # Node ID a3012c6652ff975c606569effcd66df1ded60d5e # Parent 94b634c564554bf46d848e46c0c088b61a0426e4 Should we also set the icon in the task manager? diff -r 94b634c56455 -r a3012c6652ff src/video/win32/SDL_win32window.c --- a/src/video/win32/SDL_win32window.c Sat Jan 03 01:01:53 2009 +0000 +++ b/src/video/win32/SDL_win32window.c Sat Jan 03 01:20:55 2009 +0000 @@ -366,8 +366,11 @@ 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