aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alMain.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 7a8aa53c..04514b5e 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -662,9 +662,9 @@ struct ALCdevice_struct
ALuint64 ClockBase;
ALuint SamplesDone;
- /* Temp storage used for mixing. +1 for the predictive sample. */
- ALIGN(16) ALfloat SampleData1[BUFFERSIZE+1];
- ALIGN(16) ALfloat SampleData2[BUFFERSIZE+1];
+ /* Temp storage used for mixing. */
+ ALIGN(16) ALfloat SampleData1[BUFFERSIZE];
+ ALIGN(16) ALfloat SampleData2[BUFFERSIZE];
// Dry path buffer mix
ALIGN(16) ALfloat DryBuffer[MaxChannels][BUFFERSIZE];