diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2018-12-29 13:21:47 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2018-12-29 13:21:47 -0800 |
commit | bdf7c16cfbdeadf3cfd2d4ae969a2b96ad21dbc3 (patch) | |
tree | b2678701b643ac548f4ced5fb6834ed494f2bbc5 /Alc/converter.h | |
parent | 8a84e7b662959015ee1e7d066351e5b7cc4fe283 (diff) |
Clean up a member name
Diffstat (limited to 'Alc/converter.h')
-rw-r--r-- | Alc/converter.h | 4 |
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; |