From: havoc Date: Tue, 3 Apr 2018 05:14:29 +0000 (+0000) Subject: Fix mouse spinning bug in wgl client when the game window is moved left or above... X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;ds=sidebyside;h=2ea805bf4ac39b362fe4a725e80d9687d5807a34;hp=ff4d2345f3b3fd427852095c77fedc616bfdab5d;p=xonotic%2Fdarkplaces.git Fix mouse spinning bug in wgl client when the game window is moved left or above the default monitor (negative window position). git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12358 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/vid_wgl.c b/vid_wgl.c index 24bcdabc..fbb027c3 100644 --- a/vid_wgl.c +++ b/vid_wgl.c @@ -567,8 +567,8 @@ LONG WINAPI MainWndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) break; case WM_MOVE: - window_x = (int) LOWORD(lParam); - window_y = (int) HIWORD(lParam); + window_x = (short) LOWORD(lParam); + window_y = (short) HIWORD(lParam); VID_SetMouse(false, false, false); break;