From: Elizabeth Figura <zfigura(a)codeweavers.com> --- dlls/ir50_32/ir50.c | 2 +- dlls/ir50_32/tests/ir50_32.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/ir50_32/ir50.c b/dlls/ir50_32/ir50.c index 1fba354180d..437dafa50f4 100644 --- a/dlls/ir50_32/ir50.c +++ b/dlls/ir50_32/ir50.c @@ -366,7 +366,7 @@ LRESULT WINAPI IV50_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg, break; case ICM_DECOMPRESS_END: - r = ICERR_UNSUPPORTED; + r = ICERR_OK; break; case ICM_DECOMPRESSEX_QUERY: diff --git a/dlls/ir50_32/tests/ir50_32.c b/dlls/ir50_32/tests/ir50_32.c index 064a80a0b82..7c569076601 100644 --- a/dlls/ir50_32/tests/ir50_32.c +++ b/dlls/ir50_32/tests/ir50_32.c @@ -127,7 +127,7 @@ static void test_formats(void) todo_wine ok(ret == ICERR_OK, "Got %Id.\n", ret); ret = ICDecompressEnd(hic); - todo_wine ok(ret == ICERR_OK, "Got %Id.\n", ret); + ok(ret == ICERR_OK, "Got %Id.\n", ret); out->bmiHeader.biCompression = BI_RGB; out->bmiHeader.biBitCount = 24; @@ -135,7 +135,7 @@ static void test_formats(void) ok(ret == ICERR_OK, "Got %Id.\n", ret); ret = ICDecompressEnd(hic); - todo_wine ok(ret == ICERR_OK, "Got %Id.\n", ret); + ok(ret == ICERR_OK, "Got %Id.\n", ret); ret = ICClose(hic); ok(!ret, "Got %Id.\n", ret); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8280