From 0922df6d51ca5db64837cb568c974626308d06d9 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sat, 14 May 2011 23:36:42 -0500 Subject: [PATCH] handle WM_MOUSEWHEEL message in GraphicsWindow_WndProc --- src/archutils/Win32/GraphicsWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/archutils/Win32/GraphicsWindow.cpp b/src/archutils/Win32/GraphicsWindow.cpp index 814afa882a..cb2b128d71 100644 --- a/src/archutils/Win32/GraphicsWindow.cpp +++ b/src/archutils/Win32/GraphicsWindow.cpp @@ -136,6 +136,7 @@ static LRESULT CALLBACK GraphicsWindow_WndProc( HWND hWnd, UINT msg, WPARAM wPar case WM_KEYUP: case WM_SYSKEYDOWN: case WM_SYSKEYUP: + case WM_MOUSEWHEEL: // We handle all input ourself, via DirectInput. return 0;