From 597e01153ebae150f734bcd640fb692bb69bdc05 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 26 Jul 2008 17:13:50 -0700 Subject: Use arrays instead of pointer-to-arrays for the low-pass filter --- OpenAL32/alSource.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'OpenAL32/alSource.c') diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 1960b676..d7095f0f 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -181,9 +181,6 @@ ALAPI ALvoid ALAPIENTRY alDeleteSources(ALsizei n, const ALuint *sources) ALSource->Send[j].Slot = NULL; } - free(ALSource->iirFilter.coef); - free(ALSource->iirFilter.history); - // Decrement Source count Context->SourceCount--; -- cgit v1.2.3