aboutsummaryrefslogtreecommitdiff
path: root/src/effect.c
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-11-11 23:04:59 +0100
committerFederico Angelilli <code@fedang.net>2024-11-11 23:04:59 +0100
commitb492e69682945fdf0ada95a66edd1e2cb637eabd (patch)
tree78ee37d02764dcc1511b7f7ea6b820058d4f9c9a /src/effect.c
parentb1bde5b6fe35f9ff94ae480d37c365410b94a43b (diff)
Add ring effectrewrite
Diffstat (limited to 'src/effect.c')
-rw-r--r--src/effect.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/effect.c b/src/effect.c
index 65daad1..5c43f3a 100644
--- a/src/effect.c
+++ b/src/effect.c
@@ -12,12 +12,6 @@ void effect_init(effect_t *effect, const effect_info_t *info)
effect->next = NULL;
}
-void effect_info_free(effect_info_t *info)
-{
- free(info->state);
- free(info);
-}
-
void effect_free(effect_t *effect)
{
assert(effect->info->finalize != NULL);