aboutsummaryrefslogtreecommitdiffstats
path: root/alc/voice.h
diff options
context:
space:
mode:
Diffstat (limited to 'alc/voice.h')
-rw-r--r--alc/voice.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/alc/voice.h b/alc/voice.h
index 7822ea39..69efbf82 100644
--- a/alc/voice.h
+++ b/alc/voice.h
@@ -18,6 +18,7 @@
#include "hrtf.h"
struct EffectSlot;
+struct BufferlistItem;
enum class DistanceModel;
@@ -209,12 +210,12 @@ struct Voice {
std::atomic<ALuint> mPositionFrac;
/* Current buffer queue item being played. */
- std::atomic<ALbufferlistitem*> mCurrentBuffer;
+ std::atomic<BufferlistItem*> mCurrentBuffer;
/* Buffer queue item to loop to at end of queue (will be NULL for non-
* looping voices).
*/
- std::atomic<ALbufferlistitem*> mLoopBuffer;
+ std::atomic<BufferlistItem*> mLoopBuffer;
/* Properties for the attached buffer(s). */
FmtChannels mFmtChannels;