diff options
author | Chris Robinson <[email protected]> | 2016-07-26 03:45:25 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-07-26 03:45:25 -0700 |
commit | 25d1b7bdba7b0c68e9e8e6f727c991cb69f24f4a (patch) | |
tree | 0991c91d5e0ae33552ff1bff38990fd7d03428d1 /OpenAL32/Include/alEffect.h | |
parent | 45514ee32f8566d35d6153a64c575dfde256d941 (diff) |
Remove broken autowah effect code
It's been disabled forever, and I have no idea how to make it work properly.
Better to just redo it when making something that works.
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index d20ef077..b97b0147 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -12,7 +12,6 @@ struct ALeffect; enum { EAXREVERB = 0, REVERB, - AUTOWAH, CHORUS, COMPRESSOR, DISTORTION, @@ -51,7 +50,6 @@ const struct ALeffectVtable T##_vtable = { \ extern const struct ALeffectVtable ALeaxreverb_vtable; extern const struct ALeffectVtable ALreverb_vtable; -extern const struct ALeffectVtable ALautowah_vtable; extern const struct ALeffectVtable ALchorus_vtable; extern const struct ALeffectVtable ALcompressor_vtable; extern const struct ALeffectVtable ALdistortion_vtable; @@ -94,13 +92,6 @@ typedef union ALeffectProps { } Reverb; struct { - ALfloat AttackTime; - ALfloat ReleaseTime; - ALfloat PeakGain; - ALfloat Resonance; - } Autowah; - - struct { ALint Waveform; ALint Phase; ALfloat Rate; |