diff options
Diffstat (limited to 'Alc/effects/distortion.c')
-rw-r--r-- | Alc/effects/distortion.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/effects/distortion.c b/Alc/effects/distortion.c index 950ce109..84440cce 100644 --- a/Alc/effects/distortion.c +++ b/Alc/effects/distortion.c @@ -242,9 +242,10 @@ static void ALdistortionState_Delete(ALdistortionState *state) DEFINE_ALEFFECTSTATE_VTABLE(ALdistortionState); -static ALeffectState *ALdistortionStateFactory_create(void) +static ALeffectState *ALdistortionStateFactory_create(ALdistortionStateFactory *factory) { ALdistortionState *state; + (void)factory; state = malloc(sizeof(*state)); if(!state) return NULL; |