Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed warning about unused variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jun 27, 2013
1 parent a94a512 commit 10e25fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haptic/windows/SDL_syshaptic.c
Expand Up @@ -637,7 +637,7 @@ SDL_SYS_JoystickSameHaptic(SDL_Haptic * haptic, SDL_Joystick * joystick)
int
SDL_SYS_HapticOpenFromJoystick(SDL_Haptic * haptic, SDL_Joystick * joystick)
{
int i, ret;
int i;
HRESULT idret;
DIDEVICEINSTANCE joy_instance;
joy_instance.dwSize = sizeof(DIDEVICEINSTANCE);
Expand Down

0 comments on commit 10e25fe

Please sign in to comment.