From b9ea3714a6034e13040f626e0f86b21761ee9d2e Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 30 Aug 2014 01:18:14 -0400 Subject: [PATCH] Removed a leftover TODO. --- redo/imagelist_windows.c | 1 - 1 file changed, 1 deletion(-) diff --git a/redo/imagelist_windows.c b/redo/imagelist_windows.c index f7bddb4..14d33a9 100644 --- a/redo/imagelist_windows.c +++ b/redo/imagelist_windows.c @@ -33,7 +33,6 @@ HIMAGELIST newImageList(int width, int height) HIMAGELIST il; // this handles alpha properly; see https://web.archive.org/web/20100512144953/http://msdn.microsoft.com/en-us/library/ms997646.aspx#xptheming_topic13 and http://stackoverflow.com/a/2640897/3408572 - // TODO alpha-premultiplied? http://stackoverflow.com/a/641836/3408572 implies it is, http://trac.wxwidgets.org/ticket/9050#comment:1 implies it isn't il = (*fv_ImageList_Create)(width, height, ILC_COLOR32, 20, 20); // should be reasonable if (il == NULL) xpanic("error creating image list", GetLastError());