# HG changeset patch # User Edgar Simo # Date 1217932845 0 # Node ID 1dd8cf9614ad67f650fbff2b423721ba3b241f68 # Parent 3e59fe26671f4012b01716aeec1336c13396f850 GUID is not a pointer as I thought. diff -r 3e59fe26671f -r 1dd8cf9614ad src/haptic/win32/SDL_syshaptic.c --- a/src/haptic/win32/SDL_syshaptic.c Tue Aug 05 10:39:37 2008 +0000 +++ b/src/haptic/win32/SDL_syshaptic.c Tue Aug 05 10:40:45 2008 +0000 @@ -193,10 +193,10 @@ * Callback to get all supported effects. */ #define EFFECT_TEST(e,s) \ -if ((pei->guid->Data1 == e.Data1) && \ - (pei->guid->Data2 == e.Data2) && \ - (pei->guid->Data3 == e.Data3) && \ - (SDL_strcmp(pei->guid->Data4,e.Data4)==0) \ +if ((pei->guid.Data1 == e.Data1) && \ + (pei->guid.Data2 == e.Data2) && \ + (pei->guid.Data3 == e.Data3) && \ + (SDL_strcmp(pei->guid.Data4,e.Data4)==0) \ haptic->supported |= (s) static BOOL CALLBACK DI_EffectCallback(LPCDIEFFECTINFO pei, LPVOID pv)