diff options
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index ff7acc46..dfe0a2a8 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -85,8 +85,8 @@ typedef struct ALeffect void (*GetParamf)(struct ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *val); void (*GetParamfv)(struct ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *vals); - // Index to itself - ALuint effect; + /* Self ID */ + ALuint id; } ALeffect; #define ALeffect_SetParami(x, c, p, v) ((x)->SetParami((x),(c),(p),(v))) |