aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/modulator.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-05-25 21:04:00 -0700
committerChris Robinson <[email protected]>2013-05-25 21:04:00 -0700
commit6571d805400f018b51835a8e37752409af9b1c4d (patch)
tree83cbbb263ca40d19fe25252c9d62400fc61d90c9 /Alc/effects/modulator.c
parent2da6caeaa61338ccbea9a7cbc022be932bb4e0e1 (diff)
Use a Delete method for deletable objects
Diffstat (limited to 'Alc/effects/modulator.c')
-rw-r--r--Alc/effects/modulator.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/Alc/effects/modulator.c b/Alc/effects/modulator.c
index e48a6d94..3f9ff8a5 100644
--- a/Alc/effects/modulator.c
+++ b/Alc/effects/modulator.c
@@ -197,9 +197,9 @@ static ALvoid ALmodulatorState_Process(ALmodulatorState *state, ALuint SamplesTo
}
}
-static ALeffectStateFactory *ALmodulatorState_getCreator(void)
+static void ALmodulatorState_Delete(ALmodulatorState *state)
{
- return STATIC_CAST(ALeffectStateFactory, &ModulatorFactory);
+ free(state);
}
DEFINE_ALEFFECTSTATE_VTABLE(ALmodulatorState);
@@ -222,13 +222,6 @@ static ALeffectState *ALmodulatorStateFactory_create(void)
return STATIC_CAST(ALeffectState, state);
}
-static ALvoid ALmodulatorStateFactory_destroy(ALeffectState *effect)
-{
- ALmodulatorState *state = STATIC_UPCAST(ALmodulatorState, ALeffectState, effect);
- ALmodulatorState_Destruct(state);
- free(state);
-}
-
DEFINE_ALEFFECTSTATEFACTORY_VTABLE(ALmodulatorStateFactory);