aboutsummaryrefslogtreecommitdiffstats
path: root/al/effect.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-08-24 20:00:58 -0700
committerChris Robinson <[email protected]>2020-08-24 20:00:58 -0700
commitb955479e18a11a5d9dce8fbd305dc915a2d6942c (patch)
treea8f9a00184f0db4492e9feb70c6cb39fb87a19a5 /al/effect.h
parent9e5a388dfe2dbd5250f80675426c95a9bdade39c (diff)
Recognize a convolution reverb effect type
Diffstat (limited to 'al/effect.h')
-rw-r--r--al/effect.h3
1 files changed, 2 insertions, 1 deletions
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 {