aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/compressor.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-03-28 15:37:34 -0700
committerChris Robinson <[email protected]>2020-03-28 18:15:05 -0700
commitf1f9a1417206e6097005c6088b65d56cb4e15429 (patch)
tree5ca1ad3fc79bfb1789ff0d0d9a28a2cebca845ef /alc/effects/compressor.cpp
parent504745abec35c4718833cd7c7ed8db3b242e0aa2 (diff)
Avoid AL[C]boolean for internal use
Diffstat (limited to 'alc/effects/compressor.cpp')
-rw-r--r--alc/effects/compressor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/effects/compressor.cpp b/alc/effects/compressor.cpp
index ad82037a..e5e0339f 100644
--- a/alc/effects/compressor.cpp
+++ b/alc/effects/compressor.cpp
@@ -43,7 +43,7 @@ struct CompressorState final : public EffectState {
ALfloat mGain[MAX_AMBI_CHANNELS][MAX_OUTPUT_CHANNELS]{};
/* Effect parameters */
- ALboolean mEnabled{AL_TRUE};
+ bool mEnabled{true};
ALfloat mAttackMult{1.0f};
ALfloat mReleaseMult{1.0f};
ALfloat mEnvFollower{1.0f};