diff options
author | Chris Robinson <[email protected]> | 2014-08-06 23:38:05 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-08-06 23:38:05 -0700 |
commit | e64d0f83cdedd8726f957c831faab7bb208efe41 (patch) | |
tree | 6551e8541e34e6be4744a85c20c8a78e05ec33bc /OpenAL32/alExtension.c | |
parent | 23441be474d2e6c272913432ae25fbf509b551b8 (diff) |
Disable the autowah effect
There's apparently some issues with it causing noise or killing the output. It
might be due to the per-sample changes being too harsh for the filter to keep
up with, but it's not something I can take care of in time for release.
This commit should be reverted after release when work on fixing it can resume.
Diffstat (limited to 'OpenAL32/alExtension.c')
-rw-r--r-- | OpenAL32/alExtension.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/alExtension.c b/OpenAL32/alExtension.c index fc23a932..29f21783 100644 --- a/OpenAL32/alExtension.c +++ b/OpenAL32/alExtension.c @@ -38,7 +38,9 @@ const struct EffectList EffectList[] = { { "eaxreverb", EAXREVERB, "AL_EFFECT_EAXREVERB", AL_EFFECT_EAXREVERB }, { "reverb", REVERB, "AL_EFFECT_REVERB", AL_EFFECT_REVERB }, +#if 0 { "autowah", AUTOWAH, "AL_EFFECT_AUTOWAH", AL_EFFECT_AUTOWAH }, +#endif { "chorus", CHORUS, "AL_EFFECT_CHORUS", AL_EFFECT_CHORUS }, { "compressor", COMPRESSOR, "AL_EFFECT_COMPRESSOR", AL_EFFECT_COMPRESSOR }, { "distortion", DISTORTION, "AL_EFFECT_DISTORTION", AL_EFFECT_DISTORTION }, |