diff options
Diffstat (limited to 'Alc/alcDistortion.c')
-rw-r--r-- | Alc/alcDistortion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alcDistortion.c b/Alc/alcDistortion.c index ec48ad03..8f52ab5d 100644 --- a/Alc/alcDistortion.c +++ b/Alc/alcDistortion.c @@ -67,7 +67,7 @@ typedef struct ALdistortionState { ALfloat edge_coeff; } ALdistortionState; -static ALvoid ALdistortionState_Destroy(ALdistortionState *state) +static ALvoid ALdistortionState_Destruct(ALdistortionState *state) { (void)state; } @@ -266,7 +266,7 @@ static ALeffectState *ALdistortionStateFactory_create(void) static ALvoid ALdistortionStateFactory_destroy(ALeffectState *effect) { ALdistortionState *state = STATIC_UPCAST(ALdistortionState, ALeffectState, effect); - ALdistortionState_Destroy(state); + ALdistortionState_Destruct(state); free(state); } |