diff options
author | Chris Robinson <[email protected]> | 2019-09-14 10:59:02 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-14 12:16:51 -0700 |
commit | fa64b1fd6d48165d1e028d1ec96174c3b7fc6341 (patch) | |
tree | d1b02d4aa32a742514d0b3610b70decc407de21b /alc/effects/base.h | |
parent | 3675dfcfef3becf8cfe84b0b213d502a2cf0088a (diff) |
Fix implicit conversions in the effects
Diffstat (limited to 'alc/effects/base.h')
-rw-r--r-- | alc/effects/base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/base.h b/alc/effects/base.h index 7bc170aa..6889308d 100644 --- a/alc/effects/base.h +++ b/alc/effects/base.h @@ -27,7 +27,7 @@ union EffectProps { ALfloat LateReverbDelay; ALfloat AirAbsorptionGainHF; ALfloat RoomRolloffFactor; - ALboolean DecayHFLimit; + bool DecayHFLimit; // Additional EAX Reverb Properties ALfloat GainLF; @@ -59,7 +59,7 @@ union EffectProps { } Chorus; /* Also Flanger */ struct { - ALboolean OnOff; + bool OnOff; } Compressor; struct { |