diff options
author | Chris Robinson <[email protected]> | 2023-10-12 06:42:32 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-10-12 06:42:32 -0700 |
commit | 5b86b80591ce85869716885ca393e080f6f72685 (patch) | |
tree | 73714ad6bdd3a2f0d76b4fe6fd6f8c85f79cf243 /al/auxeffectslot.cpp | |
parent | d1acb001a5c4779d382838fb02660ba9aa10e4cc (diff) |
Rename the convolution reverb effect to just convolution
While the common use case, convolution can do more than just reverb, and it
nicely shortens the name.
Diffstat (limited to 'al/auxeffectslot.cpp')
-rw-r--r-- | al/auxeffectslot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp index 33252410..fb646389 100644 --- a/al/auxeffectslot.cpp +++ b/al/auxeffectslot.cpp @@ -230,7 +230,7 @@ EffectSlotType EffectSlotTypeFromEnum(ALenum type) case AL_EFFECT_EAXREVERB: return EffectSlotType::EAXReverb; case AL_EFFECT_DEDICATED_LOW_FREQUENCY_EFFECT: return EffectSlotType::DedicatedLFE; case AL_EFFECT_DEDICATED_DIALOGUE: return EffectSlotType::DedicatedDialog; - case AL_EFFECT_CONVOLUTION_REVERB_SOFT: return EffectSlotType::Convolution; + case AL_EFFECT_CONVOLUTION_SOFT: return EffectSlotType::Convolution; } ERR("Unhandled effect enum: 0x%04x\n", type); return EffectSlotType::None; |