summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--redo/imagelist_windows.c1
1 files changed, 0 insertions, 1 deletions
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());