aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/base.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-03-28 15:03:38 -0700
committerChris Robinson <[email protected]>2020-03-28 18:15:05 -0700
commit504745abec35c4718833cd7c7ed8db3b242e0aa2 (patch)
tree4704dc2c020f6bdfacfa98143afe83933b053916 /alc/effects/base.h
parente78cb9b77f380af164b972388c8a3d110080cdac (diff)
Use a standard bool instead of ALboolean
Diffstat (limited to 'alc/effects/base.h')
-rw-r--r--alc/effects/base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/effects/base.h b/alc/effects/base.h
index e8134290..5d77e904 100644
--- a/alc/effects/base.h
+++ b/alc/effects/base.h
@@ -157,7 +157,7 @@ struct EffectState : public al::intrusive_ref<EffectState> {
virtual ~EffectState() = default;
- virtual ALboolean deviceUpdate(const ALCdevice *device) = 0;
+ virtual bool deviceUpdate(const ALCdevice *device) = 0;
virtual void update(const ALCcontext *context, const ALeffectslot *slot, const EffectProps *props, const EffectTarget target) = 0;
virtual void process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, const al::span<FloatBufferLine> samplesOut) = 0;
};