aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/converter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/converter.h')
-rw-r--r--Alc/converter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/converter.h b/Alc/converter.h
index 504d60a7..bfd0dd1a 100644
--- a/Alc/converter.h
+++ b/Alc/converter.h
@@ -25,8 +25,8 @@ struct SampleConverter {
alignas(16) ALfloat mDstSamples[BUFFERSIZE]{};
struct {
- alignas(16) ALfloat mPrevSamples[MAX_RESAMPLE_PADDING*2];
- } Chan[];
+ alignas(16) ALfloat PrevSamples[MAX_RESAMPLE_PADDING*2];
+ } mChan[];
ALsizei convert(const ALvoid **src, ALsizei *srcframes, ALvoid *dst, ALsizei dstframes);
ALsizei availableOut(ALsizei srcframes) const;