From 4c1e52e1237ddd8f667d48d43067d0e754f11a03 Mon Sep 17 00:00:00 2001 From: Vitaliy Margolen Date: Thu, 4 Jan 2007 10:15:39 -0700 Subject: [PATCH] dinput: Fix cut and paste error. --- dlls/dinput/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dinput/mouse.c b/dlls/dinput/mouse.c index 91136b600ea..6465482436b 100644 --- a/dlls/dinput/mouse.c +++ b/dlls/dinput/mouse.c @@ -662,7 +662,7 @@ static HRESULT WINAPI SysMouseWImpl_GetObjectInfo(LPDIRECTINPUTDEVICE8W iface, LPDIDEVICEOBJECTINSTANCEW pdidoi, DWORD dwObj, DWORD dwHow) { static const WCHAR x_axisW[] = {'X','-','A','x','i','s',0}; - static const WCHAR y_axisW[] = {'X','-','A','x','i','s',0}; + static const WCHAR y_axisW[] = {'Y','-','A','x','i','s',0}; static const WCHAR wheelW[] = {'W','h','e','e','l',0}; static const WCHAR buttonW[] = {'B','u','t','t','o','n',' ','%','d',0}; HRESULT res;