Commit 4d55359f authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

windowscodecs: Use the BMP decoder to decode ICO frames.

parent 870afcdd
......@@ -136,7 +136,7 @@ static void test_bad_icondirentry_size(void)
UINT width = 0, height = 0;
hr = IWICBitmapFrameDecode_GetSize(framedecode, &width, &height);
ok(hr == S_OK, "GetFrameSize failed, hr=%x\n", hr);
todo_wine ok(width == 16 && height == 16, "framesize=%ux%u\n", width, height);
ok(width == 16 && height == 16, "framesize=%ux%u\n", width, height);
IWICBitmapFrameDecode_Release(framedecode);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment