Mercurial > sdl-ios-xcode
changeset 938:fa2ce068b0b6
Hmm, this should work a little better. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 21 Aug 2004 03:55:12 +0000 |
parents | 1e6366bde299 |
children | c7c04f811994 |
files | src/joystick/win32/SDL_mmjoystick.c |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/joystick/win32/SDL_mmjoystick.c Sat Aug 21 03:45:58 2004 +0000 +++ b/src/joystick/win32/SDL_mmjoystick.c Sat Aug 21 03:55:12 2004 +0000 @@ -52,7 +52,7 @@ /* array to hold joystick ID values */ static UINT SYS_JoystickID[MAX_JOYSTICKS]; static JOYCAPS SYS_Joystick[MAX_JOYSTICKS]; -static char *SYS_JoystickNames[MAX_JOYSTICKS]; +static char *SYS_JoystickName[MAX_JOYSTICKS]; /* The private structure used to keep track of a joystick */ struct joystick_hwdata @@ -72,7 +72,7 @@ static void SetMMerror(char *function, int code); -static char *GetJoystickName(const char *szRegKey) +static char *GetJoystickName(int index, const char *szRegKey) { /* added 7/24/2004 by Eckhard Stolberg */ /* @@ -101,7 +101,7 @@ */ regsize = sizeof(regname); sprintf(regvalue, - "Joystick%d%s", i+1, + "Joystick%d%s", index+1, REGSTR_VAL_JOYOEMNAME); regresult = RegQueryValueExA(hKey, regvalue, 0, 0, (LPBYTE) ®name, @@ -168,7 +168,7 @@ for ( i = 0; i < MAX_JOYSTICKS; i++ ) { SYS_JoystickID[i] = JOYSTICKID1 + i; - SYS_JoystickNames[i] = NULL; + SYS_JoystickName[i] = NULL; } @@ -185,7 +185,7 @@ if ( result == JOYERR_NOERROR ) { SYS_JoystickID[numdevs] = SYS_JoystickID[i]; SYS_Joystick[numdevs] = joycaps; - SYS_JoystickName[numdevs] = GetJoystickName(joycaps.szRegKey); + SYS_JoystickName[numdevs] = GetJoystickName(numdevs, joycaps.szRegKey); numdevs++; } } @@ -196,8 +196,8 @@ /* Function to get the device-dependent name of a joystick */ const char *SDL_SYS_JoystickName(int index) { - if ( SYS_JoystickNames[index] != NULL ) { - return(SYS_JoystickNames[index]); + if ( SYS_JoystickName[index] != NULL ) { + return(SYS_JoystickName[index]); } else { return(SYS_Joystick[index].szPname); } @@ -373,8 +373,8 @@ { int i; for (i = 0; i < MAX_JOYSTICKS; i++) { - if ( SYS_JoystickNames[i] != NULL ) { - free(SYS_JoystickNames[i]); + if ( SYS_JoystickName[i] != NULL ) { + free(SYS_JoystickName[i]); } } }