diff options
Diffstat (limited to 'Alc/effects/dedicated.c')
-rw-r--r-- | Alc/effects/dedicated.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/effects/dedicated.c b/Alc/effects/dedicated.c index 9ed68af2..4d3485fb 100644 --- a/Alc/effects/dedicated.c +++ b/Alc/effects/dedicated.c @@ -93,10 +93,11 @@ static void ALdedicatedState_Delete(ALdedicatedState *state) DEFINE_ALEFFECTSTATE_VTABLE(ALdedicatedState); -ALeffectState *ALdedicatedStateFactory_create(void) +ALeffectState *ALdedicatedStateFactory_create(ALdedicatedStateFactory *factory) { ALdedicatedState *state; ALsizei s; + (void)factory; state = malloc(sizeof(*state)); if(!state) return NULL; |