From 185ba234ec031beeea15952618ad6b5e226b0f17 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard <julliard@winehq.org> Date: Tue, 2 Oct 2001 21:39:48 +0000 Subject: [PATCH] Fixed typo in previous change. --- windows/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/input.c b/windows/input.c index f4909c3f8fb..1bf712200e8 100644 --- a/windows/input.c +++ b/windows/input.c @@ -49,7 +49,7 @@ static DWORD PosX, PosY; #define GET_KEYSTATE() \ ((InputKeyStateTable[SwappedButtons ? VK_RBUTTON : VK_LBUTTON] & 0x80 ? MK_LBUTTON : 0) | \ - (InputKeyStateTable[SwappedButtons ? VK_LBUTTON : VK_LBUTTON] & 0x80 ? MK_RBUTTON : 0) | \ + (InputKeyStateTable[SwappedButtons ? VK_LBUTTON : VK_RBUTTON] & 0x80 ? MK_RBUTTON : 0) | \ (InputKeyStateTable[VK_MBUTTON] & 0x80 ? MK_MBUTTON : 0) | \ (InputKeyStateTable[VK_SHIFT] & 0x80 ? MK_SHIFT : 0) | \ (InputKeyStateTable[VK_CONTROL] & 0x80 ? MK_CONTROL : 0)) -- GitLab