dxgi/tests: Add missing ok() call.

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Józef Kucia 2018-11-23 14:41:15 +01:00 committed by Alexandre Julliard
parent 8890ece54c
commit 650abc567a
1 changed files with 2 additions and 1 deletions

View File

@ -2433,10 +2433,11 @@ static void test_windowed_resize_target(IDXGISwapChain *swapchain, HWND window,
}
ret = MoveWindow(window, 0, 0, 0, 0, TRUE);
ok(ret, "MoveWindow failed.\n");
ok(ret, "Failed to move window.\n");
GetWindowRect(window, &e->window_rect);
GetClientRect(window, &e->client_rect);
ret = MoveWindow(window, 0, 0, 200, 200, TRUE);
ok(ret, "Failed to move window.\n");
memset(&mode, 0, sizeof(mode));
hr = IDXGISwapChain_ResizeTarget(swapchain, &mode);