diff options
author | Lopuska <[email protected]> | 2019-07-10 07:14:31 +0200 |
---|---|---|
committer | kcat <[email protected]> | 2019-07-09 22:14:31 -0700 |
commit | 4a33bbb14d6b5f7673fe0371004236bac8f5bb2a (patch) | |
tree | 1ece0323a5e5dee97600277003fcde6cb0e9f768 /OpenAL32/Include | |
parent | 3ffb6867a3bac856bacebf25dfbcf48b4482d50f (diff) |
vocal morpher implementation (#312)
* vocal morpher implementation
* compile fix for GCC
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 51d6a24f..d94317a4 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -18,6 +18,7 @@ enum { FSHIFTER_EFFECT, MODULATOR_EFFECT, PSHIFTER_EFFECT, + VMORPHER_EFFECT, DEDICATED_EFFECT, MAX_EFFECTS @@ -31,7 +32,7 @@ struct EffectList { int type; ALenum val; }; -extern const EffectList gEffectList[14]; +extern const EffectList gEffectList[15]; struct ALeffect { |