# HG changeset patch # User Ryan C. Gordon # Date 1162093153 0 # Node ID 6051761b5934a47e995d778ebb4d83208cb03932 # Parent 866052b01ee5a1924d8f9147061404fafdc66044 Win32 joystick fix, ported from 1.2 branch r2887:2888. (Thanks, Ondrej!) Fixes Bugzilla #267. diff -r 866052b01ee5 -r 6051761b5934 src/joystick/win32/SDL_mmjoystick.c --- a/src/joystick/win32/SDL_mmjoystick.c Sat Oct 28 16:48:03 2006 +0000 +++ b/src/joystick/win32/SDL_mmjoystick.c Sun Oct 29 03:39:13 2006 +0000 @@ -162,7 +162,7 @@ joyinfo.dwSize = sizeof(joyinfo); joyinfo.dwFlags = JOY_RETURNALL; - result = joyGetPosEx(SYS_JoystickID[i], &joyinfo); + result = joyGetPosEx(i, &joyinfo); if (result == JOYERR_NOERROR) { result = joyGetDevCaps(i, &joycaps, sizeof(joycaps)); if (result == JOYERR_NOERROR) {