Commit 4b110f75 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

dinput/tests: Send a matching key-up event.

The user32 msg tests are failing (more than normal) as they still see 'Q' in the down state.
parent 008ceb66
......@@ -110,6 +110,7 @@ static void acquire_tests(IDirectInputA *pDI, HWND hwnd)
for (i = 0; i < sizeof(custom_state) / sizeof(custom_state[0]); i++)
ok(custom_state[i] == 0, "Should be zeroed, got 0x%08x\n", custom_state[i]);
}
keybd_event('Q', 0, KEYEVENTF_KEYUP, 0);
if (pKeyboard) IUnknown_Release(pKeyboard);
}
......
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