From 1f72c13a5ae2661cd8ca947913b959824d5e6d8b Mon Sep 17 00:00:00 2001 From: Vitaliy Margolen Date: Fri, 6 Jul 2007 07:25:47 -0600 Subject: [PATCH] dinput: Correct test - use appropriate mouse state structure. --- dlls/dinput/tests/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dinput/tests/mouse.c b/dlls/dinput/tests/mouse.c index de6bff02eb5..0f9c88b44d7 100644 --- a/dlls/dinput/tests/mouse.c +++ b/dlls/dinput/tests/mouse.c @@ -72,7 +72,7 @@ static void test_acquire(LPDIRECTINPUT pDI, HWND hwnd) { HRESULT hr; LPDIRECTINPUTDEVICE pMouse = NULL; - DIMOUSESTATE2 m_state; + DIMOUSESTATE m_state; hr = IDirectInput_CreateDevice(pDI, &GUID_SysMouse, &pMouse, NULL); ok(SUCCEEDED(hr), "IDirectInput_CreateDevice() failed: %s\n", DXGetErrorString8(hr));