Commit 2b02c2be authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3d9/tests: Fix test_wndproc() D3D9Ex test on Windows 10.

parent b12e967d
......@@ -3215,11 +3215,11 @@ static void test_wndproc(void)
if (!(tests[i].create_flags & CREATE_DEVICE_NOWINDOWCHANGES))
{
ok(windowpos.hwnd == device_window && !windowpos.hwndInsertAfter
ok(windowpos.hwnd == device_window
&& !windowpos.x && !windowpos.y && !windowpos.cx && !windowpos.cy
&& windowpos.flags == (SWP_SHOWWINDOW | SWP_NOMOVE | SWP_NOSIZE),
"Got unexpected WINDOWPOS hwnd=%p, insertAfter=%p, x=%d, y=%d, cx=%d, cy=%d, flags=%x\n",
windowpos.hwnd, windowpos.hwndInsertAfter, windowpos.x, windowpos.y, windowpos.cx,
"Got unexpected WINDOWPOS hwnd=%p, x=%d, y=%d, cx=%d, cy=%d, flags=%x\n",
windowpos.hwnd, windowpos.x, windowpos.y, windowpos.cx,
windowpos.cy, windowpos.flags);
}
......
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