diff options
Diffstat (limited to 'Alc/alcontext.h')
-rw-r--r-- | Alc/alcontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alcontext.h b/Alc/alcontext.h index 7b7688ac..dadb4f8f 100644 --- a/Alc/alcontext.h +++ b/Alc/alcontext.h @@ -27,7 +27,7 @@ struct ALvoiceProps; struct ALeffectslotProps; struct ALvoice; struct ALeffectslotArray; -struct ll_ringbuffer; +struct RingBuffer; enum class DistanceModel { InverseClamped = AL_INVERSE_DISTANCE_CLAMPED, @@ -112,7 +112,7 @@ struct ALCcontext_struct { std::thread EventThread; al::semaphore EventSem; - ll_ringbuffer *AsyncEvents{nullptr}; + RingBuffer *AsyncEvents{nullptr}; std::atomic<ALbitfieldSOFT> EnabledEvts{0u}; std::mutex EventCbLock; ALEVENTPROCSOFT EventCb{}; |