diff options
author | Chris Robinson <[email protected]> | 2008-07-26 17:13:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-07-26 17:13:50 -0700 |
commit | 597e01153ebae150f734bcd640fb692bb69bdc05 (patch) | |
tree | 911dd8dc8d7d210615c71d041967597fc3db90f3 /OpenAL32/alSource.c | |
parent | d3e5fcd13e6fa597a74d93ef87738b5491cc4bdf (diff) |
Use arrays instead of pointer-to-arrays for the low-pass filter
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 3 |
1 files changed, 0 insertions, 3 deletions
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--; |