aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/echo.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/echo.c
parent2da6caeaa61338ccbea9a7cbc022be932bb4e0e1 (diff)
Use a Delete method for deletable objects
Diffstat (limited to 'Alc/effects/echo.c')
-rw-r--r--Alc/effects/echo.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/Alc/effects/echo.c b/Alc/effects/echo.c
index 8f679c41..533461ac 100644
--- a/Alc/effects/echo.c
+++ b/Alc/effects/echo.c
@@ -175,9 +175,9 @@ static ALvoid ALechoState_Process(ALechoState *state, ALuint SamplesToDo, const
state->Offset = offset;
}
-static ALeffectStateFactory *ALechoState_getCreator(void)
+static void ALechoState_Delete(ALechoState *state)
{
- return STATIC_CAST(ALeffectStateFactory, &EchoFactory);
+ free(state);
}
DEFINE_ALEFFECTSTATE_VTABLE(ALechoState);
@@ -205,13 +205,6 @@ ALeffectState *ALechoStateFactory_create(void)
return STATIC_CAST(ALeffectState, state);
}
-static ALvoid ALechoStateFactory_destroy(ALeffectState *effect)
-{
- ALechoState *state = STATIC_UPCAST(ALechoState, ALeffectState, effect);
- ALechoState_Destruct(state);
- free(state);
-}
-
DEFINE_ALEFFECTSTATEFACTORY_VTABLE(ALechoStateFactory);