From: Brian Paul Date: Tue, 27 Jun 2000 13:39:55 +0000 (+0000) Subject: another patch for win32 joysticks X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=37283bb248c4b459154ae4a2fd9389d346d41bda;p=mesa.git another patch for win32 joysticks --- diff --git a/src/glut/glx/glut_input.c b/src/glut/glx/glut_input.c index 007883d6b6e..bc93d5e5151 100644 --- a/src/glut/glx/glut_input.c +++ b/src/glut/glx/glut_input.c @@ -266,6 +266,10 @@ __glutProcessDeviceEvents(XEvent * event) JOYINFOEX info; JOYCAPS joyCaps; + memset(&info, 0, sizeof(JOYINFOEX)); + info.dwSize = sizeof(JOYINFOEX); + info.dwFlags = JOY_RETURNALL; + if (joyGetPosEx(JOYSTICKID1,&info) != JOYERR_NOERROR) { __glutHasJoystick = 1; joyGetDevCaps(JOYSTICKID1, &joyCaps, sizeof(joyCaps));