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

Commit

Permalink
Browse files Browse the repository at this point in the history
Missed closing parenthesis.
  • Loading branch information
bobbens committed Aug 4, 2008
1 parent 5a1cc34 commit 1e80779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haptic/win32/SDL_syshaptic.c
Expand Up @@ -193,7 +193,7 @@ SDL_SYS_HapticName(int index)
* Callback to get all supported effects.
*/
#define EFFECT_TEST(e,s) \
if (SDL_memcmp(&pei->guid,&(e),sizeof(GUID)==0) \
if (SDL_memcmp(&pei->guid,&(e),sizeof(GUID)==0)) \
haptic->supported |= (s)
static BOOL CALLBACK
DI_EffectCallback(LPCDIEFFECTINFO pei, LPVOID pv)
Expand Down

0 comments on commit 1e80779

Please sign in to comment.