From: Elizabeth Figura <zfigura(a)codeweavers.com> --- dlls/mfplat/tests/mfplat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mfplat/tests/mfplat.c b/dlls/mfplat/tests/mfplat.c index 40853f6fc00..7aba4666f45 100644 --- a/dlls/mfplat/tests/mfplat.c +++ b/dlls/mfplat/tests/mfplat.c @@ -177,7 +177,7 @@ static void get_d3d9_surface_readback(IDirect3DSurface9 *surface, struct d3d9_su rb->surf_desc.Format, D3DPOOL_SYSTEMMEM, &rb->readback_surface, NULL); ok(hr == D3D_OK, "Failed to create surface, hr %#lx.\n", hr); - hr = IDirect3DDevice9Ex_GetRenderTargetData(device, surface, rb->readback_surface); + hr = IDirect3DDevice9_GetRenderTargetData(device, surface, rb->readback_surface); ok(hr == D3D_OK, "Failed to get render target data, hr %#lx.\n", hr); hr = IDirect3DSurface9_LockRect(rb->readback_surface, &rb->map_desc, NULL, 0); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5908