From: Richard Rauch Date: Thu, 6 Nov 2003 21:41:17 +0000 (+0000) Subject: From John, a couple of lines needed to be changed to fix the mouse wheel X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=d3f260238533f3e30cfa730f61f5726158618bde;p=freeglut From John, a couple of lines needed to be changed to fix the mouse wheel support on WIN32. git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@302 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/freeglut_main.c b/src/freeglut_main.c index 485ee4b..6d2ec75 100644 --- a/src/freeglut_main.c +++ b/src/freeglut_main.c @@ -1411,9 +1411,9 @@ LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, case 0x020a: /* Should be WM_MOUSEWHEEL but my compiler doesn't recognize it */ { - int wheel_number = LOWORD( lParam ); + int wheel_number = LOWORD( wParam ); /* THIS IS SPECULATIVE -- John Fay, 10/2/03 */ - int ticks = HIWORD( lParam ) / 120; + short ticks = HIWORD( lParam ) / 120; /* Should be WHEEL_DELTA instead of 120 */ int direction = 1;