diff options
author | Chris Robinson <[email protected]> | 2008-11-14 07:13:59 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-11-14 07:13:59 -0800 |
commit | d72b132c57145bd6cd4c531fe0a8c65b348c2c29 (patch) | |
tree | 910ffeef08d6b278e12da0032867efed2bb58ee7 /OpenAL32/Include/alEffect.h | |
parent | 506912aed7a1ae84fbc0407741c85ac2d5e109d2 (diff) |
Add an option to disable specific EFX effect types
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 24f12c5e..5f6723bc 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -38,6 +38,13 @@ extern "C" { #define AL_REVERB_DECAY_HFLIMIT 0x000D +enum { + REVERB = 0, + MAX_EFFECTS +}; +extern ALboolean DisabledEffects[MAX_EFFECTS]; + + typedef struct ALeffect_struct { // Effect type (AL_EFFECT_NULL, ...) |