From b955479e18a11a5d9dce8fbd305dc915a2d6942c Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 24 Aug 2020 20:00:58 -0700 Subject: Recognize a convolution reverb effect type --- al/effect.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'al/effect.h') diff --git a/al/effect.h b/al/effect.h index 76215f40..28ce1f3e 100644 --- a/al/effect.h +++ b/al/effect.h @@ -22,6 +22,7 @@ enum { PSHIFTER_EFFECT, VMORPHER_EFFECT, DEDICATED_EFFECT, + CONVOLUTION_EFFECT, MAX_EFFECTS }; @@ -34,7 +35,7 @@ struct EffectList { int type; ALenum val; }; -extern const EffectList gEffectList[15]; +extern const EffectList gEffectList[16]; struct ALeffect { -- cgit v1.2.3